#[non_exhaustive]pub struct Rev5DataVolume {
pub file_size: u64,
pub crc32: u32,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.file_size: u64§crc32: u32Trait Implementations§
Source§impl Clone for Rev5DataVolume
impl Clone for Rev5DataVolume
Source§fn clone(&self) -> Rev5DataVolume
fn clone(&self) -> Rev5DataVolume
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Rev5DataVolume
impl Debug for Rev5DataVolume
Source§impl PartialEq for Rev5DataVolume
impl PartialEq for Rev5DataVolume
Source§fn eq(&self, other: &Rev5DataVolume) -> bool
fn eq(&self, other: &Rev5DataVolume) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Rev5DataVolume
impl StructuralPartialEq for Rev5DataVolume
Auto Trait Implementations§
impl Freeze for Rev5DataVolume
impl RefUnwindSafe for Rev5DataVolume
impl Send for Rev5DataVolume
impl Sync for Rev5DataVolume
impl Unpin for Rev5DataVolume
impl UnsafeUnpin for Rev5DataVolume
impl UnwindSafe for Rev5DataVolume
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