pub struct ShiftedView<'canvas> { /* private fields */ }
Expand description
Gives a view onto an AsciiCanvas that has a fixed upper-left
point. You can get one of these by calling the shift()
method on
any ASCII view.
Shifted views also track the extent of the characters which are
written through them; the close()
method can be used to read
that out when you are finished.
Implementations§
source§impl<'canvas> ShiftedView<'canvas>
impl<'canvas> ShiftedView<'canvas>
sourcepub fn close(self) -> (usize, usize)
pub fn close(self) -> (usize, usize)
Finalize the view; returns the (maximal row, maximal column) that was written (in the coordinates of the parent view, not the shifted view). Note that these values are the actual last places that were written, so if you wrote to that precise location, you would overwrite some of the content that was written.
Trait Implementations§
Auto Trait Implementations§
impl<'canvas> Freeze for ShiftedView<'canvas>
impl<'canvas> !RefUnwindSafe for ShiftedView<'canvas>
impl<'canvas> !Send for ShiftedView<'canvas>
impl<'canvas> !Sync for ShiftedView<'canvas>
impl<'canvas> Unpin for ShiftedView<'canvas>
impl<'canvas> !UnwindSafe for ShiftedView<'canvas>
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