pub enum RevokeDeviceSessionArg {
WebSession(DeviceSessionArg),
DesktopClient(RevokeDesktopClientArg),
MobileClient(DeviceSessionArg),
}
Available on crate features
sync_routes
and dbx_team
only.Variants§
WebSession(DeviceSessionArg)
End an active session.
DesktopClient(RevokeDesktopClientArg)
Unlink a linked desktop device.
MobileClient(DeviceSessionArg)
Unlink a linked mobile device.
Trait Implementations§
Source§impl Clone for RevokeDeviceSessionArg
impl Clone for RevokeDeviceSessionArg
Source§fn clone(&self) -> RevokeDeviceSessionArg
fn clone(&self) -> RevokeDeviceSessionArg
Returns a duplicate of the value. Read more
1.0.0 · 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 RevokeDeviceSessionArg
impl Debug for RevokeDeviceSessionArg
Source§impl<'de> Deserialize<'de> for RevokeDeviceSessionArg
impl<'de> Deserialize<'de> for RevokeDeviceSessionArg
Source§fn 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
Source§impl PartialEq for RevokeDeviceSessionArg
impl PartialEq for RevokeDeviceSessionArg
Source§impl Serialize for RevokeDeviceSessionArg
impl Serialize for RevokeDeviceSessionArg
impl Eq for RevokeDeviceSessionArg
impl StructuralPartialEq for RevokeDeviceSessionArg
Auto Trait Implementations§
impl Freeze for RevokeDeviceSessionArg
impl RefUnwindSafe for RevokeDeviceSessionArg
impl Send for RevokeDeviceSessionArg
impl Sync for RevokeDeviceSessionArg
impl Unpin for RevokeDeviceSessionArg
impl UnwindSafe for RevokeDeviceSessionArg
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.