Struct dropbox_sdk::team::ListMemberDevicesResult
source · [−]#[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 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.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
sourceimpl 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
sourceimpl Clone for ListMemberDevicesResult
impl Clone for ListMemberDevicesResult
sourcefn clone(&self) -> ListMemberDevicesResult
fn clone(&self) -> ListMemberDevicesResult
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 ListMemberDevicesResult
impl Debug for ListMemberDevicesResult
sourceimpl Default for ListMemberDevicesResult
impl Default for ListMemberDevicesResult
sourcefn default() -> ListMemberDevicesResult
fn default() -> ListMemberDevicesResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ListMemberDevicesResult
impl<'de> Deserialize<'de> for ListMemberDevicesResult
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<ListMemberDevicesResult> for ListMemberDevicesResult
impl PartialEq<ListMemberDevicesResult> for ListMemberDevicesResult
sourcefn eq(&self, other: &ListMemberDevicesResult) -> bool
fn eq(&self, other: &ListMemberDevicesResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ListMemberDevicesResult) -> bool
fn ne(&self, other: &ListMemberDevicesResult) -> bool
This method tests for !=.
sourceimpl Serialize for ListMemberDevicesResult
impl Serialize for ListMemberDevicesResult
impl Eq for ListMemberDevicesResult
impl StructuralEq for ListMemberDevicesResult
impl StructuralPartialEq for ListMemberDevicesResult
Auto Trait Implementations
impl RefUnwindSafe for ListMemberDevicesResult
impl Send for ListMemberDevicesResult
impl Sync for ListMemberDevicesResult
impl Unpin for ListMemberDevicesResult
impl UnwindSafe for ListMemberDevicesResult
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