pub struct KickChannel {
    pub id: u64,
    pub slug: String,
    pub user: KickUser,
    pub chatroom: KickChatroom,
}Expand description
Kick channel information
Fields§
§id: u64§slug: String§user: KickUser§chatroom: KickChatroomTrait Implementations§
Source§impl Clone for KickChannel
 
impl Clone for KickChannel
Source§fn clone(&self) -> KickChannel
 
fn clone(&self) -> KickChannel
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 KickChannel
 
impl Debug for KickChannel
Source§impl<'de> Deserialize<'de> for KickChannel
 
impl<'de> Deserialize<'de> for KickChannel
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 KickChannel
impl RefUnwindSafe for KickChannel
impl Send for KickChannel
impl Sync for KickChannel
impl Unpin for KickChannel
impl UnwindSafe for KickChannel
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