pub struct FsRemoveParams {
pub force: Option<bool>,
pub path: Value,
pub recursive: Option<bool>,
}Fields§
§force: Option<bool>§path: Value§recursive: Option<bool>Trait Implementations§
Source§impl Clone for FsRemoveParams
impl Clone for FsRemoveParams
Source§fn clone(&self) -> FsRemoveParams
fn clone(&self) -> FsRemoveParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FsRemoveParams
impl Debug for FsRemoveParams
Source§impl<'de> Deserialize<'de> for FsRemoveParams
impl<'de> Deserialize<'de> for FsRemoveParams
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 FsRemoveParams
impl PartialEq for FsRemoveParams
Source§fn eq(&self, other: &FsRemoveParams) -> bool
fn eq(&self, other: &FsRemoveParams) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FsRemoveParams
impl Serialize for FsRemoveParams
impl StructuralPartialEq for FsRemoveParams
Auto Trait Implementations§
impl Freeze for FsRemoveParams
impl RefUnwindSafe for FsRemoveParams
impl Send for FsRemoveParams
impl Sync for FsRemoveParams
impl Unpin for FsRemoveParams
impl UnsafeUnpin for FsRemoveParams
impl UnwindSafe for FsRemoveParams
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