pub struct MicrosoftTeamsChannel {
pub id: Option<String>,
pub display_name: Option<String>,
pub membership_type: Option<String>,
}Fields§
§id: Option<String>The Microsoft Teams channel id (e.g. 19:abc@thread.tacv2).
display_name: Option<String>The display name of the channel.
membership_type: Option<String>The membership type of the channel: standard, private, or shared.
Trait Implementations§
Source§impl Clone for MicrosoftTeamsChannel
impl Clone for MicrosoftTeamsChannel
Source§fn clone(&self) -> MicrosoftTeamsChannel
fn clone(&self) -> MicrosoftTeamsChannel
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 MicrosoftTeamsChannel
impl Debug for MicrosoftTeamsChannel
Source§impl Default for MicrosoftTeamsChannel
impl Default for MicrosoftTeamsChannel
Source§fn default() -> MicrosoftTeamsChannel
fn default() -> MicrosoftTeamsChannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MicrosoftTeamsChannelwhere
MicrosoftTeamsChannel: Default,
impl<'de> Deserialize<'de> for MicrosoftTeamsChannelwhere
MicrosoftTeamsChannel: 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
Auto Trait Implementations§
impl Freeze for MicrosoftTeamsChannel
impl RefUnwindSafe for MicrosoftTeamsChannel
impl Send for MicrosoftTeamsChannel
impl Sync for MicrosoftTeamsChannel
impl Unpin for MicrosoftTeamsChannel
impl UnsafeUnpin for MicrosoftTeamsChannel
impl UnwindSafe for MicrosoftTeamsChannel
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