pub struct ChannelCommandTTYMetadata {
pub tty: bool,
pub tty_selectors: Vec<u32>,
pub term: Bytes,
pub modes: BTreeMap<u32, Value>,
pub size: ChannelCommandTTYSizeMetadata,
}Fields§
§tty: bool§tty_selectors: Vec<u32>§term: Bytes§modes: BTreeMap<u32, Value>§size: ChannelCommandTTYSizeMetadataTrait Implementations§
Source§impl Clone for ChannelCommandTTYMetadata
impl Clone for ChannelCommandTTYMetadata
Source§fn clone(&self) -> ChannelCommandTTYMetadata
fn clone(&self) -> ChannelCommandTTYMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ChannelCommandTTYMetadata
impl<'de> Deserialize<'de> for ChannelCommandTTYMetadata
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
impl Eq for ChannelCommandTTYMetadata
Source§impl Ord for ChannelCommandTTYMetadata
impl Ord for ChannelCommandTTYMetadata
Source§fn cmp(&self, other: &ChannelCommandTTYMetadata) -> Ordering
fn cmp(&self, other: &ChannelCommandTTYMetadata) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ChannelCommandTTYMetadata
impl PartialEq for ChannelCommandTTYMetadata
Source§fn eq(&self, other: &ChannelCommandTTYMetadata) -> bool
fn eq(&self, other: &ChannelCommandTTYMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ChannelCommandTTYMetadata
impl PartialOrd for ChannelCommandTTYMetadata
impl StructuralPartialEq for ChannelCommandTTYMetadata
Auto Trait Implementations§
impl !Freeze for ChannelCommandTTYMetadata
impl RefUnwindSafe for ChannelCommandTTYMetadata
impl Send for ChannelCommandTTYMetadata
impl Sync for ChannelCommandTTYMetadata
impl Unpin for ChannelCommandTTYMetadata
impl UnsafeUnpin for ChannelCommandTTYMetadata
impl UnwindSafe for ChannelCommandTTYMetadata
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