pub struct Graphics<'t> { /* private fields */ }Available on crate feature
kitty-graphics only.Expand description
Opaque reference to a Kitty graphics image storage.
Obtained via Terminal::kitty_graphics. The reference is borrowed from
the terminal with lifetime 't and remains valid until the next mutating
terminal call (e.g. Terminal::vt_write or Terminal::reset).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'t> !Send for Graphics<'t>
impl<'t> !Sync for Graphics<'t>
impl<'t> Freeze for Graphics<'t>
impl<'t> RefUnwindSafe for Graphics<'t>
impl<'t> Unpin for Graphics<'t>
impl<'t> UnsafeUnpin for Graphics<'t>
impl<'t> UnwindSafe for Graphics<'t>
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