pub struct TestBackend { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Backend for TestBackend
impl Backend for TestBackend
fn draw<'a, I>(&mut self, content: I) -> Result<(), Error>
fn hide_cursor(&mut self) -> Result<(), Error>
fn show_cursor(&mut self) -> Result<(), Error>
fn get_cursor(&mut self) -> Result<(u16, u16), Error>
fn set_cursor(&mut self, x: u16, y: u16) -> Result<(), Error>
fn clear(&mut self) -> Result<(), Error>
fn size(&self) -> Result<Rect, Error>
fn flush(&mut self) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for TestBackend
impl RefUnwindSafe for TestBackend
impl Send for TestBackend
impl Sync for TestBackend
impl Unpin for TestBackend
impl UnwindSafe for TestBackend
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