pub struct FileMetaShallowVersion {
pub header: FileMetaVersionHeader,
pub meta: Vec<u8>,
}
Fields§
§header: FileMetaVersionHeader
§meta: Vec<u8>
Implementations§
Trait Implementations§
Source§impl Clone for FileMetaShallowVersion
impl Clone for FileMetaShallowVersion
Source§fn clone(&self) -> FileMetaShallowVersion
fn clone(&self) -> FileMetaShallowVersion
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FileMetaShallowVersion
impl Debug for FileMetaShallowVersion
Source§impl Default for FileMetaShallowVersion
impl Default for FileMetaShallowVersion
Source§fn default() -> FileMetaShallowVersion
fn default() -> FileMetaShallowVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileMetaShallowVersion
impl<'de> Deserialize<'de> for FileMetaShallowVersion
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 Ord for FileMetaShallowVersion
impl Ord for FileMetaShallowVersion
Source§fn cmp(&self, other: &FileMetaShallowVersion) -> Ordering
fn cmp(&self, other: &FileMetaShallowVersion) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FileMetaShallowVersion
impl PartialEq for FileMetaShallowVersion
Source§fn eq(&self, other: &FileMetaShallowVersion) -> bool
fn eq(&self, other: &FileMetaShallowVersion) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for FileMetaShallowVersion
impl PartialOrd for FileMetaShallowVersion
Source§impl Serialize for FileMetaShallowVersion
impl Serialize for FileMetaShallowVersion
impl Eq for FileMetaShallowVersion
impl StructuralPartialEq for FileMetaShallowVersion
Auto Trait Implementations§
impl Freeze for FileMetaShallowVersion
impl RefUnwindSafe for FileMetaShallowVersion
impl Send for FileMetaShallowVersion
impl Sync for FileMetaShallowVersion
impl Unpin for FileMetaShallowVersion
impl UnwindSafe for FileMetaShallowVersion
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