[][src]Struct graph_rs_types::entitytypes::Team

pub struct Team {
    pub web_url: String,
    pub member_settings: TeamMemberSettings,
    pub guest_settings: TeamGuestSettings,
    pub messaging_settings: TeamMessagingSettings,
    pub fun_settings: TeamFunSettings,
    pub is_archived: bool,
    pub channels: Vec<Channel>,
    pub installed_apps: Vec<TeamsAppInstallation>,
    pub operations: Vec<TeamsAsyncOperation>,
}

Fields

web_url: Stringmember_settings: TeamMemberSettingsguest_settings: TeamGuestSettingsmessaging_settings: TeamMessagingSettingsfun_settings: TeamFunSettingsis_archived: boolchannels: Vec<Channel>installed_apps: Vec<TeamsAppInstallation>operations: Vec<TeamsAsyncOperation>

Trait Implementations

impl Eq for Team[src]

impl Clone for Team[src]

impl PartialEq<Team> for Team[src]

impl Debug for Team[src]

impl Serialize for Team[src]

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

Auto Trait Implementations

impl Send for Team

impl Unpin for Team

impl Sync for Team

impl RefUnwindSafe for Team

impl UnwindSafe for Team

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]