pub struct DeleteFileOut {
pub id: Uuid,
pub object: String,
pub deleted: bool,
}Fields§
§id: UuidThe ID of the deleted file.
object: StringThe object type that was deleted
deleted: boolThe deletion status.
Implementations§
Source§impl DeleteFileOut
impl DeleteFileOut
Trait Implementations§
Source§impl Clone for DeleteFileOut
impl Clone for DeleteFileOut
Source§fn clone(&self) -> DeleteFileOut
fn clone(&self) -> DeleteFileOut
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 DeleteFileOut
impl Debug for DeleteFileOut
Source§impl Default for DeleteFileOut
impl Default for DeleteFileOut
Source§fn default() -> DeleteFileOut
fn default() -> DeleteFileOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteFileOut
impl<'de> Deserialize<'de> for DeleteFileOut
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 DeleteFileOut
impl PartialEq for DeleteFileOut
Source§impl Serialize for DeleteFileOut
impl Serialize for DeleteFileOut
impl StructuralPartialEq for DeleteFileOut
Auto Trait Implementations§
impl Freeze for DeleteFileOut
impl RefUnwindSafe for DeleteFileOut
impl Send for DeleteFileOut
impl Sync for DeleteFileOut
impl Unpin for DeleteFileOut
impl UnsafeUnpin for DeleteFileOut
impl UnwindSafe for DeleteFileOut
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