pub struct PtySize {
pub cols: u16,
pub rows: u16,
}Expand description
PTY terminal size.
Fields§
§cols: u16Number of terminal columns.
rows: u16Number of terminal rows.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PtySize
impl RefUnwindSafe for PtySize
impl Send for PtySize
impl Sync for PtySize
impl Unpin for PtySize
impl UnsafeUnpin for PtySize
impl UnwindSafe for PtySize
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