pub enum SvnFragment {
Revision(String),
}
Expand description
The available URL fragments and their values when using Apache Subversion in a SourceUrl
.
Variants§
Implementations§
Source§impl SvnFragment
impl SvnFragment
Sourcefn parser(input: &mut &str) -> ModalResult<SvnFragment>
fn parser(input: &mut &str) -> ModalResult<SvnFragment>
Recognizes URL fragments and values specific to Apache Subversion.
This parser considers all variants of SvnFragment
as fragments in an alpm-package-source
string (including the leading #
character).
Trait Implementations§
Source§impl Clone for SvnFragment
impl Clone for SvnFragment
Source§fn clone(&self) -> SvnFragment
fn clone(&self) -> SvnFragment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SvnFragment
impl Debug for SvnFragment
Source§impl<'de> Deserialize<'de> for SvnFragment
impl<'de> Deserialize<'de> for SvnFragment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for SvnFragment
impl Display for SvnFragment
Source§impl PartialEq for SvnFragment
impl PartialEq for SvnFragment
Source§impl Serialize for SvnFragment
impl Serialize for SvnFragment
impl Eq for SvnFragment
impl StructuralPartialEq for SvnFragment
Auto Trait Implementations§
impl Freeze for SvnFragment
impl RefUnwindSafe for SvnFragment
impl Send for SvnFragment
impl Sync for SvnFragment
impl Unpin for SvnFragment
impl UnwindSafe for SvnFragment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more