pub struct OverlayLayout {
pub width: usize,
pub row: usize,
pub col: usize,
pub max_height: Option<usize>,
}Expand description
Resolved overlay layout
Fields§
§width: usize§row: usize§col: usize§max_height: Option<usize>Trait Implementations§
Source§impl Clone for OverlayLayout
impl Clone for OverlayLayout
Source§fn clone(&self) -> OverlayLayout
fn clone(&self) -> OverlayLayout
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OverlayLayout
impl RefUnwindSafe for OverlayLayout
impl Send for OverlayLayout
impl Sync for OverlayLayout
impl Unpin for OverlayLayout
impl UnsafeUnpin for OverlayLayout
impl UnwindSafe for OverlayLayout
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