pub struct ResponsiveSplit {
pub breakpoint: Breakpoint,
pub rects: Vec<Rect>,
}Expand description
Result of a responsive layout split.
Fields§
§breakpoint: BreakpointThe breakpoint that was active for this split.
rects: Vec<Rect>The resulting layout rectangles.
Trait Implementations§
Source§impl Clone for ResponsiveSplit
impl Clone for ResponsiveSplit
Source§fn clone(&self) -> ResponsiveSplit
fn clone(&self) -> ResponsiveSplit
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResponsiveSplit
impl Debug for ResponsiveSplit
Source§impl PartialEq for ResponsiveSplit
impl PartialEq for ResponsiveSplit
impl StructuralPartialEq for ResponsiveSplit
Auto Trait Implementations§
impl Freeze for ResponsiveSplit
impl RefUnwindSafe for ResponsiveSplit
impl Send for ResponsiveSplit
impl Sync for ResponsiveSplit
impl Unpin for ResponsiveSplit
impl UnsafeUnpin for ResponsiveSplit
impl UnwindSafe for ResponsiveSplit
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