pub struct MicrosoftTeamsTeam {
pub id: Option<String>,
pub display_name: Option<String>,
pub channels: Option<Vec<MicrosoftTeamsChannel>>,
}Fields§
§id: Option<String>The AAD group id of the team.
display_name: Option<String>The display name of the team.
channels: Option<Vec<MicrosoftTeamsChannel>>The channels in the team the user can access.
Trait Implementations§
Source§impl Clone for MicrosoftTeamsTeam
impl Clone for MicrosoftTeamsTeam
Source§fn clone(&self) -> MicrosoftTeamsTeam
fn clone(&self) -> MicrosoftTeamsTeam
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 MicrosoftTeamsTeam
impl Debug for MicrosoftTeamsTeam
Source§impl Default for MicrosoftTeamsTeam
impl Default for MicrosoftTeamsTeam
Source§fn default() -> MicrosoftTeamsTeam
fn default() -> MicrosoftTeamsTeam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MicrosoftTeamsTeamwhere
MicrosoftTeamsTeam: Default,
impl<'de> Deserialize<'de> for MicrosoftTeamsTeamwhere
MicrosoftTeamsTeam: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl GraphQLFields for MicrosoftTeamsTeam
impl GraphQLFields for MicrosoftTeamsTeam
Auto Trait Implementations§
impl Freeze for MicrosoftTeamsTeam
impl RefUnwindSafe for MicrosoftTeamsTeam
impl Send for MicrosoftTeamsTeam
impl Sync for MicrosoftTeamsTeam
impl Unpin for MicrosoftTeamsTeam
impl UnsafeUnpin for MicrosoftTeamsTeam
impl UnwindSafe for MicrosoftTeamsTeam
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