#[non_exhaustive]pub struct ListMemberDevicesResult {
pub active_web_sessions: Option<Vec<ActiveWebSession>>,
pub desktop_client_sessions: Option<Vec<DesktopClientSession>>,
pub mobile_client_sessions: Option<Vec<MobileClientSession>>,
}
Available on crate features
async_routes
and 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.active_web_sessions: Option<Vec<ActiveWebSession>>
List of web sessions made by this team member.
desktop_client_sessions: Option<Vec<DesktopClientSession>>
List of desktop clients used by this team member.
mobile_client_sessions: Option<Vec<MobileClientSession>>
List of mobile client used by this team member.
Implementations§
Source§impl ListMemberDevicesResult
impl ListMemberDevicesResult
pub fn with_active_web_sessions(self, value: Vec<ActiveWebSession>) -> Self
pub fn with_desktop_client_sessions( self, value: Vec<DesktopClientSession>, ) -> Self
pub fn with_mobile_client_sessions( self, value: Vec<MobileClientSession>, ) -> Self
Trait Implementations§
Source§impl Clone for ListMemberDevicesResult
impl Clone for ListMemberDevicesResult
Source§fn clone(&self) -> ListMemberDevicesResult
fn clone(&self) -> ListMemberDevicesResult
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 ListMemberDevicesResult
impl Debug for ListMemberDevicesResult
Source§impl Default for ListMemberDevicesResult
impl Default for ListMemberDevicesResult
Source§fn default() -> ListMemberDevicesResult
fn default() -> ListMemberDevicesResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListMemberDevicesResult
impl<'de> Deserialize<'de> for ListMemberDevicesResult
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 ListMemberDevicesResult
impl PartialEq for ListMemberDevicesResult
Source§impl Serialize for ListMemberDevicesResult
impl Serialize for ListMemberDevicesResult
impl Eq for ListMemberDevicesResult
impl StructuralPartialEq for ListMemberDevicesResult
Auto Trait Implementations§
impl Freeze for ListMemberDevicesResult
impl RefUnwindSafe for ListMemberDevicesResult
impl Send for ListMemberDevicesResult
impl Sync for ListMemberDevicesResult
impl Unpin for ListMemberDevicesResult
impl UnwindSafe for ListMemberDevicesResult
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.