Enum semver::Identifier [−][src]
Expand description
An identifier in the pre-release or build metadata.
See sections 9 and 10 of the spec for more about pre-release identifers and build metadata.
Variants
Numeric(u64)
An identifier that’s solely numbers.
AlphaNumeric(String)
An identifier with letters and numbers.
Trait Implementations
impl Clone for Identifier
[src]
impl Clone for Identifier
[src]fn clone(&self) -> Identifier
[src]
fn clone(&self) -> Identifier
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for Identifier
[src]
impl Debug for Identifier
[src]impl<'de> Deserialize<'de> for Identifier
[src]
impl<'de> Deserialize<'de> for Identifier
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Display for Identifier
[src]
impl Display for Identifier
[src]impl From<Identifier> for Identifier
[src]
impl From<Identifier> for Identifier
[src]fn from(other: Identifier) -> Identifier
[src]
fn from(other: Identifier) -> Identifier
[src]Performs the conversion.
impl Hash for Identifier
[src]
impl Hash for Identifier
[src]impl Ord for Identifier
[src]
impl Ord for Identifier
[src]impl PartialEq<Identifier> for Identifier
[src]
impl PartialEq<Identifier> for Identifier
[src]fn eq(&self, other: &Identifier) -> bool
[src]
fn eq(&self, other: &Identifier) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &Identifier) -> bool
[src]
fn ne(&self, other: &Identifier) -> bool
[src]This method tests for !=
.
impl PartialOrd<Identifier> for Identifier
[src]
impl PartialOrd<Identifier> for Identifier
[src]fn partial_cmp(&self, other: &Identifier) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Identifier) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Serialize for Identifier
[src]
impl Serialize for Identifier
[src]impl Eq for Identifier
[src]
impl StructuralEq for Identifier
[src]
impl StructuralPartialEq for Identifier
[src]
Auto Trait Implementations
impl RefUnwindSafe for Identifier
impl Send for Identifier
impl Sync for Identifier
impl Unpin for Identifier
impl UnwindSafe for Identifier
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,