pub struct GetChatroomMemberListResponse {
pub chat_room_owner: String,
pub chatroom_members: Vec<ChatroomMember>,
}Fields§
§chat_room_owner: String§chatroom_members: Vec<ChatroomMember>Trait Implementations§
Source§impl Clone for GetChatroomMemberListResponse
impl Clone for GetChatroomMemberListResponse
Source§fn clone(&self) -> GetChatroomMemberListResponse
fn clone(&self) -> GetChatroomMemberListResponse
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 GetChatroomMemberListResponse
impl Default for GetChatroomMemberListResponse
Source§fn default() -> GetChatroomMemberListResponse
fn default() -> GetChatroomMemberListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetChatroomMemberListResponse
impl<'de> Deserialize<'de> for GetChatroomMemberListResponse
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 GetChatroomMemberListResponse
impl RefUnwindSafe for GetChatroomMemberListResponse
impl Send for GetChatroomMemberListResponse
impl Sync for GetChatroomMemberListResponse
impl Unpin for GetChatroomMemberListResponse
impl UnwindSafe for GetChatroomMemberListResponse
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