pub struct Transform<'a, I: TermIn, O: TermOut> { /* private fields */ }
Expand description
§Transform
A simple way for editing a termios object. Changes are stored until commited. This is to avoid weird transition states like what you see in some Nim libraries ( I’ve not used any in other languages, ncurses is really solid though).
A transfrom should not be constructed on it’s own, and should only be made
via the change
method on Terminal
.
Implementations§
Auto Trait Implementations§
impl<'a, I, O> Freeze for Transform<'a, I, O>
impl<'a, I, O> RefUnwindSafe for Transform<'a, I, O>where
I: RefUnwindSafe,
O: RefUnwindSafe,
impl<'a, I, O> Send for Transform<'a, I, O>
impl<'a, I, O> Sync for Transform<'a, I, O>
impl<'a, I, O> Unpin for Transform<'a, I, O>
impl<'a, I, O> !UnwindSafe for Transform<'a, I, O>
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