pub struct DeletedFile {
pub id: String,
pub type_: Option<DeletedFileType>,
}Expand description
Response returned when a file is deleted.
Fields§
§id: StringID of the deleted file.
type_: Option<DeletedFileType>Deleted object type — always "file_deleted".
Trait Implementations§
Source§impl Clone for DeletedFile
impl Clone for DeletedFile
Source§fn clone(&self) -> DeletedFile
fn clone(&self) -> DeletedFile
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 DeletedFile
impl Debug for DeletedFile
Source§impl<'de> Deserialize<'de> for DeletedFile
impl<'de> Deserialize<'de> for DeletedFile
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 DeletedFile
impl PartialEq for DeletedFile
Source§impl Serialize for DeletedFile
impl Serialize for DeletedFile
impl Eq for DeletedFile
impl StructuralPartialEq for DeletedFile
Auto Trait Implementations§
impl Freeze for DeletedFile
impl RefUnwindSafe for DeletedFile
impl Send for DeletedFile
impl Sync for DeletedFile
impl Unpin for DeletedFile
impl UnsafeUnpin for DeletedFile
impl UnwindSafe for DeletedFile
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