pub struct LegacyVersion2 {
pub major: u16,
pub minor: u16,
pub patch: u16,
pub commit: Option<u32>,
pub feature_set: u32,
}
Fields§
§major: u16
§minor: u16
§patch: u16
§commit: Option<u32>
§feature_set: u32
Trait Implementations§
Source§impl Clone for LegacyVersion2
impl Clone for LegacyVersion2
Source§fn clone(&self) -> LegacyVersion2
fn clone(&self) -> LegacyVersion2
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 LegacyVersion2
impl Debug for LegacyVersion2
Source§impl Default for LegacyVersion2
impl Default for LegacyVersion2
Source§impl<'de> Deserialize<'de> for LegacyVersion2
impl<'de> Deserialize<'de> for LegacyVersion2
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 LegacyVersion2
impl Display for LegacyVersion2
Source§impl From<LegacyVersion1> for LegacyVersion2
impl From<LegacyVersion1> for LegacyVersion2
Source§fn from(legacy_version: LegacyVersion1) -> Self
fn from(legacy_version: LegacyVersion1) -> Self
Converts to this type from the input type.
Source§impl From<LegacyVersion2> for Version
impl From<LegacyVersion2> for Version
Source§fn from(version: LegacyVersion2) -> Self
fn from(version: LegacyVersion2) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LegacyVersion2
impl PartialEq for LegacyVersion2
Source§impl Sanitize for LegacyVersion2
impl Sanitize for LegacyVersion2
Source§impl Serialize for LegacyVersion2
impl Serialize for LegacyVersion2
impl Eq for LegacyVersion2
impl StructuralPartialEq for LegacyVersion2
Auto Trait Implementations§
impl Freeze for LegacyVersion2
impl RefUnwindSafe for LegacyVersion2
impl Send for LegacyVersion2
impl Sync for LegacyVersion2
impl Unpin for LegacyVersion2
impl UnwindSafe for LegacyVersion2
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