Struct dropbox_sdk::team::RevokeDesktopClientArg
source · [−]#[non_exhaustive]pub struct RevokeDesktopClientArg {
pub session_id: String,
pub team_member_id: String,
pub delete_on_unlink: bool,
}Available on crate feature
dbx_team only.Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.session_id: StringThe session id.
team_member_id: StringThe unique id of the member owning the device.
delete_on_unlink: boolWhether to delete all files of the account (this is possible only if supported by the desktop client and will be made the next time the client access the account).
Implementations
Trait Implementations
sourceimpl Clone for RevokeDesktopClientArg
impl Clone for RevokeDesktopClientArg
sourcefn clone(&self) -> RevokeDesktopClientArg
fn clone(&self) -> RevokeDesktopClientArg
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RevokeDesktopClientArg
impl Debug for RevokeDesktopClientArg
sourceimpl<'de> Deserialize<'de> for RevokeDesktopClientArg
impl<'de> Deserialize<'de> for RevokeDesktopClientArg
sourcefn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<RevokeDesktopClientArg> for RevokeDesktopClientArg
impl PartialEq<RevokeDesktopClientArg> for RevokeDesktopClientArg
sourcefn eq(&self, other: &RevokeDesktopClientArg) -> bool
fn eq(&self, other: &RevokeDesktopClientArg) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RevokeDesktopClientArg) -> bool
fn ne(&self, other: &RevokeDesktopClientArg) -> bool
This method tests for !=.
sourceimpl Serialize for RevokeDesktopClientArg
impl Serialize for RevokeDesktopClientArg
impl Eq for RevokeDesktopClientArg
impl StructuralEq for RevokeDesktopClientArg
impl StructuralPartialEq for RevokeDesktopClientArg
Auto Trait Implementations
impl RefUnwindSafe for RevokeDesktopClientArg
impl Send for RevokeDesktopClientArg
impl Sync for RevokeDesktopClientArg
impl Unpin for RevokeDesktopClientArg
impl UnwindSafe for RevokeDesktopClientArg
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more