pub struct MicrosoftTeamsPostSettingsInput {
pub team_id: String,
pub team_name: String,
pub channel_id: String,
pub channel_name: String,
pub membership_type: String,
pub tenant_id: String,
}Fields§
§team_id: StringAAD group id of the Team.
team_name: StringDisplay name of the Team.
channel_id: StringMicrosoft Teams channel id.
channel_name: StringDisplay name of the channel.
membership_type: StringMembership type of the channel: standard, private, or shared.
tenant_id: StringAzure AD tenant id the team belongs to.
Trait Implementations§
Source§impl Clone for MicrosoftTeamsPostSettingsInput
impl Clone for MicrosoftTeamsPostSettingsInput
Source§fn clone(&self) -> MicrosoftTeamsPostSettingsInput
fn clone(&self) -> MicrosoftTeamsPostSettingsInput
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 Default for MicrosoftTeamsPostSettingsInput
impl Default for MicrosoftTeamsPostSettingsInput
Source§fn default() -> MicrosoftTeamsPostSettingsInput
fn default() -> MicrosoftTeamsPostSettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MicrosoftTeamsPostSettingsInput
impl<'de> Deserialize<'de> for MicrosoftTeamsPostSettingsInput
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
Auto Trait Implementations§
impl Freeze for MicrosoftTeamsPostSettingsInput
impl RefUnwindSafe for MicrosoftTeamsPostSettingsInput
impl Send for MicrosoftTeamsPostSettingsInput
impl Sync for MicrosoftTeamsPostSettingsInput
impl Unpin for MicrosoftTeamsPostSettingsInput
impl UnsafeUnpin for MicrosoftTeamsPostSettingsInput
impl UnwindSafe for MicrosoftTeamsPostSettingsInput
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