[][src]Struct dropbox_sdk::team::MemberDevices

pub struct MemberDevices {
    pub team_member_id: String,
    pub web_sessions: Option<Vec<ActiveWebSession>>,
    pub desktop_clients: Option<Vec<DesktopClientSession>>,
    pub mobile_clients: Option<Vec<MobileClientSession>>,
}

Information on devices of a team's member.

Fields

team_member_id: String

The member unique Id.

web_sessions: Option<Vec<ActiveWebSession>>

List of web sessions made by this team member.

desktop_clients: Option<Vec<DesktopClientSession>>

List of desktop clients by this team member.

mobile_clients: Option<Vec<MobileClientSession>>

List of mobile clients by this team member.

Methods

impl MemberDevices[src]

pub fn new(team_member_id: String) -> Self[src]

pub fn with_web_sessions(self, value: Option<Vec<ActiveWebSession>>) -> Self[src]

pub fn with_desktop_clients(
    self,
    value: Option<Vec<DesktopClientSession>>
) -> Self
[src]

pub fn with_mobile_clients(
    self,
    value: Option<Vec<MobileClientSession>>
) -> Self
[src]

Trait Implementations

impl Debug for MemberDevices[src]

impl Serialize for MemberDevices[src]

impl<'de> Deserialize<'de> for MemberDevices[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]