pub struct B2FileDownloadDetails {
pub content_length: u64,
pub content_type: String,
pub file_id: String,
pub file_name: String,
pub content_sha1: Option<String>,
pub upload_timestamp: u64,
pub file_info: Option<HashMap<String, String>>,
}Fields§
§content_length: u64§content_type: String§file_id: String§file_name: String§content_sha1: Option<String>§upload_timestamp: u64§file_info: Option<HashMap<String, String>>Trait Implementations§
Source§impl Clone for B2FileDownloadDetails
impl Clone for B2FileDownloadDetails
Source§fn clone(&self) -> B2FileDownloadDetails
fn clone(&self) -> B2FileDownloadDetails
Returns a duplicate 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 B2FileDownloadDetails
impl Debug for B2FileDownloadDetails
Source§impl<'de> Deserialize<'de> for B2FileDownloadDetails
impl<'de> Deserialize<'de> for B2FileDownloadDetails
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
Auto Trait Implementations§
impl Freeze for B2FileDownloadDetails
impl RefUnwindSafe for B2FileDownloadDetails
impl Send for B2FileDownloadDetails
impl Sync for B2FileDownloadDetails
impl Unpin for B2FileDownloadDetails
impl UnwindSafe for B2FileDownloadDetails
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