pub struct CancelledFileUpload {
pub file_id: String,
pub account_id: String,
pub bucket_id: String,
pub file_name: String,
}
Expand description
A large file that was cancelled prior to upload completion.
Fields§
§file_id: String
The ID of the cancelled file.
account_id: String
The account that owns the file.
bucket_id: String
The bucket the file was being uploaded to.
file_name: String
The file’s name.
Trait Implementations§
Source§impl Debug for CancelledFileUpload
impl Debug for CancelledFileUpload
Source§impl<'de> Deserialize<'de> for CancelledFileUpload
impl<'de> Deserialize<'de> for CancelledFileUpload
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 CancelledFileUpload
impl RefUnwindSafe for CancelledFileUpload
impl Send for CancelledFileUpload
impl Sync for CancelledFileUpload
impl Unpin for CancelledFileUpload
impl UnwindSafe for CancelledFileUpload
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