pub struct ExecResize {
pub rows: u16,
pub cols: u16,
}Expand description
Request to resize the PTY of a running command.
Fields§
§rows: u16New number of rows.
cols: u16New number of columns.
Trait Implementations§
Source§impl Clone for ExecResize
impl Clone for ExecResize
Source§fn clone(&self) -> ExecResize
fn clone(&self) -> ExecResize
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 ExecResize
impl Debug for ExecResize
Source§impl<'de> Deserialize<'de> for ExecResize
impl<'de> Deserialize<'de> for ExecResize
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 ExecResize
impl RefUnwindSafe for ExecResize
impl Send for ExecResize
impl Sync for ExecResize
impl Unpin for ExecResize
impl UnsafeUnpin for ExecResize
impl UnwindSafe for ExecResize
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