pub struct RecursivePayload {
pub deleted_files: usize,
pub deleted_folders: usize,
}
Expand description
Result payload from a recursive folder deletion request.
Returned by the deletefolderrecursive
endpoint, it provides
information about how many files and folders were deleted in total.
Fields§
§deleted_files: usize
The total number of files deleted.
deleted_folders: usize
The total number of folders deleted.
Trait Implementations§
Source§impl Debug for RecursivePayload
impl Debug for RecursivePayload
Source§impl<'de> Deserialize<'de> for RecursivePayload
impl<'de> Deserialize<'de> for RecursivePayload
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 RecursivePayload
impl RefUnwindSafe for RecursivePayload
impl Send for RecursivePayload
impl Sync for RecursivePayload
impl Unpin for RecursivePayload
impl UnwindSafe for RecursivePayload
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