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