pub struct TerminalAck {
pub stream_id: String,
}Expand description
Nothing to say beyond “done”.
Its own frame because the alternative was answering a keystroke with
TerminalAttachAccepted carrying a geometry nobody set — an ack that has
to lie about a field is a worse economy than one more variant. A resize
still answers with attach.accepted, because reporting the geometry that
was actually applied is precisely what that frame is for.
Fields§
§stream_id: StringTrait Implementations§
Source§impl Clone for TerminalAck
impl Clone for TerminalAck
Source§fn clone(&self) -> TerminalAck
fn clone(&self) -> TerminalAck
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 Debug for TerminalAck
impl Debug for TerminalAck
Source§impl<'de> Deserialize<'de> for TerminalAck
impl<'de> Deserialize<'de> for TerminalAck
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 TerminalAck
Source§impl PartialEq for TerminalAck
impl PartialEq for TerminalAck
Source§impl Serialize for TerminalAck
impl Serialize for TerminalAck
impl StructuralPartialEq for TerminalAck
Auto Trait Implementations§
impl Freeze for TerminalAck
impl RefUnwindSafe for TerminalAck
impl Send for TerminalAck
impl Sync for TerminalAck
impl Unpin for TerminalAck
impl UnsafeUnpin for TerminalAck
impl UnwindSafe for TerminalAck
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.