pub struct TextChannel {
pub server_channel: ServerChannel,
pub last_message_id: Option<MessageId>,
pub nonce: Option<String>,
}Fields§
§server_channel: ServerChannel§last_message_id: Option<MessageId>§nonce: Option<String>Trait Implementations§
Source§impl Clone for TextChannel
impl Clone for TextChannel
Source§fn clone(&self) -> TextChannel
fn clone(&self) -> TextChannel
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 TextChannel
impl Debug for TextChannel
Source§impl<'de> Deserialize<'de> for TextChannel
impl<'de> Deserialize<'de> for TextChannel
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
Source§impl PartialEq for TextChannel
impl PartialEq for TextChannel
Source§impl Serialize for TextChannel
impl Serialize for TextChannel
impl Eq for TextChannel
impl StructuralPartialEq for TextChannel
Auto Trait Implementations§
impl Freeze for TextChannel
impl RefUnwindSafe for TextChannel
impl Send for TextChannel
impl Sync for TextChannel
impl Unpin for TextChannel
impl UnwindSafe for TextChannel
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