pub struct FolderDelete {
pub accessibility: Option<String>,
pub json: Option<bool>,
pub name: String,
pub token: Option<String>,
pub type: Option<String>,
pub uid_token: Option<String>,
}Expand description
FolderDelete : folderDelete is a command that delete folder
Fields§
§accessibility: Option<String>for personal password manager
json: Option<bool>Set output format to JSON
name: StringFolder name
token: Option<String>Authentication token (see /auth and /configure)
type: Option<String>§uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl FolderDelete
impl FolderDelete
Sourcepub fn new(name: String) -> FolderDelete
pub fn new(name: String) -> FolderDelete
folderDelete is a command that delete folder
Trait Implementations§
Source§impl Clone for FolderDelete
impl Clone for FolderDelete
Source§fn clone(&self) -> FolderDelete
fn clone(&self) -> FolderDelete
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 FolderDelete
impl Debug for FolderDelete
Source§impl Default for FolderDelete
impl Default for FolderDelete
Source§fn default() -> FolderDelete
fn default() -> FolderDelete
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FolderDelete
impl<'de> Deserialize<'de> for FolderDelete
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 FolderDelete
impl PartialEq for FolderDelete
Source§fn eq(&self, other: &FolderDelete) -> bool
fn eq(&self, other: &FolderDelete) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FolderDelete
impl Serialize for FolderDelete
impl StructuralPartialEq for FolderDelete
Auto Trait Implementations§
impl Freeze for FolderDelete
impl RefUnwindSafe for FolderDelete
impl Send for FolderDelete
impl Sync for FolderDelete
impl Unpin for FolderDelete
impl UnsafeUnpin for FolderDelete
impl UnwindSafe for FolderDelete
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