pub struct GridSize {
pub cols: u32,
pub rows: u32,
}Available on crate feature
kitty-graphics only.Expand description
The size of an image in grid coordinates.
Fields§
§cols: u32The number of columns.
rows: u32The number of rows.
Trait Implementations§
impl Copy for GridSize
impl Eq for GridSize
impl StructuralPartialEq for GridSize
Auto Trait Implementations§
impl Freeze for GridSize
impl RefUnwindSafe for GridSize
impl Send for GridSize
impl Sync for GridSize
impl Unpin for GridSize
impl UnsafeUnpin for GridSize
impl UnwindSafe for GridSize
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