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 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