pub struct DeletedFile {
pub id: String,
pub object: String,
pub deleted: bool,
}
Fields§
§id: String
§object: String
§deleted: bool
Trait Implementations§
Source§impl Clone for DeletedFile
impl Clone for DeletedFile
Source§fn clone(&self) -> DeletedFile
fn clone(&self) -> DeletedFile
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<'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
Auto Trait Implementations§
impl Freeze for DeletedFile
impl RefUnwindSafe for DeletedFile
impl Send for DeletedFile
impl Sync for DeletedFile
impl Unpin 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