pub struct FileResponse {
pub metadata: File,
}
Expand description
Response returned when moving or copying a file.
This struct wraps file metadata after an operation that results in a file being created or relocated (e.g., move, copy).
Fields§
§metadata: File
Metadata of the resulting file after the operation.
Trait Implementations§
Source§impl Debug for FileResponse
impl Debug for FileResponse
Source§impl<'de> Deserialize<'de> for FileResponse
impl<'de> Deserialize<'de> for FileResponse
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 FileResponse
impl RefUnwindSafe for FileResponse
impl Send for FileResponse
impl Sync for FileResponse
impl Unpin for FileResponse
impl UnwindSafe for FileResponse
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