pub enum HgFragment {
Branch(String),
Revision(String),
Tag(String),
}
Expand description
An optional version specification used in a SourceUrl
for the Hg VCS.
Variants§
Implementations§
Source§impl HgFragment
impl HgFragment
Sourcefn parser(input: &mut &str) -> ModalResult<HgFragment>
fn parser(input: &mut &str) -> ModalResult<HgFragment>
Recognizes URL fragments and values specific to the Mercurial VCS.
This parser considers all variants of HgFragment
as fragments in an alpm-package-source
string (including the leading #
character).
Trait Implementations§
Source§impl Clone for HgFragment
impl Clone for HgFragment
Source§fn clone(&self) -> HgFragment
fn clone(&self) -> HgFragment
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 HgFragment
impl Debug for HgFragment
Source§impl<'de> Deserialize<'de> for HgFragment
impl<'de> Deserialize<'de> for HgFragment
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 HgFragment
impl Display for HgFragment
Source§impl PartialEq for HgFragment
impl PartialEq for HgFragment
Source§impl Serialize for HgFragment
impl Serialize for HgFragment
impl Eq for HgFragment
impl StructuralPartialEq for HgFragment
Auto Trait Implementations§
impl Freeze for HgFragment
impl RefUnwindSafe for HgFragment
impl Send for HgFragment
impl Sync for HgFragment
impl Unpin for HgFragment
impl UnwindSafe for HgFragment
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