pub struct PtyResizedResponse {
pub process_id: String,
pub cols: u16,
pub rows: u16,
}Fields§
§process_id: String§cols: u16§rows: u16Trait Implementations§
Source§impl Clone for PtyResizedResponse
impl Clone for PtyResizedResponse
Source§fn clone(&self) -> PtyResizedResponse
fn clone(&self) -> PtyResizedResponse
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 PtyResizedResponse
impl Debug for PtyResizedResponse
Source§impl<'de> Deserialize<'de> for PtyResizedResponse
impl<'de> Deserialize<'de> for PtyResizedResponse
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 PtyResizedResponse
Source§impl Hash for PtyResizedResponse
impl Hash for PtyResizedResponse
Source§impl PartialEq for PtyResizedResponse
impl PartialEq for PtyResizedResponse
Source§fn eq(&self, other: &PtyResizedResponse) -> bool
fn eq(&self, other: &PtyResizedResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PtyResizedResponse
impl Serialize for PtyResizedResponse
impl StructuralPartialEq for PtyResizedResponse
Auto Trait Implementations§
impl Freeze for PtyResizedResponse
impl RefUnwindSafe for PtyResizedResponse
impl Send for PtyResizedResponse
impl Sync for PtyResizedResponse
impl Unpin for PtyResizedResponse
impl UnsafeUnpin for PtyResizedResponse
impl UnwindSafe for PtyResizedResponse
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