pub struct UploadSessionFileAttributes {
pub original_file_name: String,
pub file_hash: String,
pub file_size: u32,
pub mime_type: String,
pub source: UploadSource,
pub version: u32,
}
Fields§
§original_file_name: String
§file_hash: String
§file_size: u32
§mime_type: String
§source: UploadSource
§version: u32
Trait Implementations§
Source§impl Clone for UploadSessionFileAttributes
impl Clone for UploadSessionFileAttributes
Source§fn clone(&self) -> UploadSessionFileAttributes
fn clone(&self) -> UploadSessionFileAttributes
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 UploadSessionFileAttributes
impl Debug for UploadSessionFileAttributes
Source§impl<'de> Deserialize<'de> for UploadSessionFileAttributes
impl<'de> Deserialize<'de> for UploadSessionFileAttributes
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UploadSessionFileAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UploadSessionFileAttributes, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UploadSessionFileAttributes
impl RefUnwindSafe for UploadSessionFileAttributes
impl Send for UploadSessionFileAttributes
impl Sync for UploadSessionFileAttributes
impl Unpin for UploadSessionFileAttributes
impl UnwindSafe for UploadSessionFileAttributes
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