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