pub struct SidecarDecodedItem {Show 14 fields
pub item_type: u8,
pub item_type_name: String,
pub codec: u8,
pub codec_name: String,
pub flags: u8,
pub raw_byte_length: Option<u32>,
pub stored_byte_length: u32,
pub decoded_byte_length: usize,
pub name: String,
pub mime: String,
pub stored_data_base64: String,
pub data_base64: String,
pub text: Option<String>,
pub json: Option<Value>,
}Fields§
§item_type: u8§item_type_name: String§codec: u8§codec_name: String§flags: u8§raw_byte_length: Option<u32>§stored_byte_length: u32§decoded_byte_length: usize§name: String§mime: String§stored_data_base64: String§data_base64: String§text: Option<String>§json: Option<Value>Trait Implementations§
Source§impl Clone for SidecarDecodedItem
impl Clone for SidecarDecodedItem
Source§fn clone(&self) -> SidecarDecodedItem
fn clone(&self) -> SidecarDecodedItem
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 SidecarDecodedItem
impl Debug for SidecarDecodedItem
Auto Trait Implementations§
impl Freeze for SidecarDecodedItem
impl RefUnwindSafe for SidecarDecodedItem
impl Send for SidecarDecodedItem
impl Sync for SidecarDecodedItem
impl Unpin for SidecarDecodedItem
impl UnsafeUnpin for SidecarDecodedItem
impl UnwindSafe for SidecarDecodedItem
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