pub struct GroupDmConversationResponse {
pub id: String,
pub channel_id: String,
pub dm_type: String,
pub name: Option<String>,
pub participants: Vec<GroupDmParticipantRef>,
pub created_at: String,
}Fields§
§id: String§channel_id: String§dm_type: String§name: Option<String>§participants: Vec<GroupDmParticipantRef>§created_at: StringTrait Implementations§
Source§impl Clone for GroupDmConversationResponse
impl Clone for GroupDmConversationResponse
Source§fn clone(&self) -> GroupDmConversationResponse
fn clone(&self) -> GroupDmConversationResponse
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 GroupDmConversationResponse
impl Debug for GroupDmConversationResponse
Source§impl<'de> Deserialize<'de> for GroupDmConversationResponse
impl<'de> Deserialize<'de> for GroupDmConversationResponse
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 GroupDmConversationResponse
impl RefUnwindSafe for GroupDmConversationResponse
impl Send for GroupDmConversationResponse
impl Sync for GroupDmConversationResponse
impl Unpin for GroupDmConversationResponse
impl UnsafeUnpin for GroupDmConversationResponse
impl UnwindSafe for GroupDmConversationResponse
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