pub struct SplashRow {
pub row: u16,
pub col: u16,
pub spans: Vec<SplashSpan>,
}Expand description
One laid-out row: which terminal row, which starting column, and the spans that fill it. Faces render this verbatim — there is no layout arithmetic left for them to do.
Fields§
§row: u16§col: u16§spans: Vec<SplashSpan>Implementations§
Trait Implementations§
impl Eq for SplashRow
impl StructuralPartialEq for SplashRow
Auto Trait Implementations§
impl Freeze for SplashRow
impl RefUnwindSafe for SplashRow
impl Send for SplashRow
impl Sync for SplashRow
impl Unpin for SplashRow
impl UnsafeUnpin for SplashRow
impl UnwindSafe for SplashRow
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