pub struct RandomAccessFileMetaV0 {
pub content_type: String,
pub metadata: Vec<u8>,
pub total_size: u64,
pub chunk_size: u32,
pub arity: u16,
pub depth: u8,
}
Expand description
Random Access File Object
Fields§
§content_type: String
§metadata: Vec<u8>
§total_size: u64
§chunk_size: u32
§arity: u16
§depth: u8
Trait Implementations§
Source§impl Clone for RandomAccessFileMetaV0
impl Clone for RandomAccessFileMetaV0
Source§fn clone(&self) -> RandomAccessFileMetaV0
fn clone(&self) -> RandomAccessFileMetaV0
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 RandomAccessFileMetaV0
impl Debug for RandomAccessFileMetaV0
Source§impl<'de> Deserialize<'de> for RandomAccessFileMetaV0
impl<'de> Deserialize<'de> for RandomAccessFileMetaV0
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 RandomAccessFileMetaV0
impl PartialEq for RandomAccessFileMetaV0
Source§impl Serialize for RandomAccessFileMetaV0
impl Serialize for RandomAccessFileMetaV0
impl Eq for RandomAccessFileMetaV0
impl StructuralPartialEq for RandomAccessFileMetaV0
Auto Trait Implementations§
impl Freeze for RandomAccessFileMetaV0
impl RefUnwindSafe for RandomAccessFileMetaV0
impl Send for RandomAccessFileMetaV0
impl Sync for RandomAccessFileMetaV0
impl Unpin for RandomAccessFileMetaV0
impl UnwindSafe for RandomAccessFileMetaV0
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