pub struct DetailedGridInfo {
pub rows: DetailedGridTracksInfo,
pub columns: DetailedGridTracksInfo,
pub items: Vec<DetailedGridItemsInfo>,
}
Expand description
Information from the computation of grid
Fields§
§rows: DetailedGridTracksInfo
§columns: DetailedGridTracksInfo
§items: Vec<DetailedGridItemsInfo>
Trait Implementations§
Source§impl Clone for DetailedGridInfo
impl Clone for DetailedGridInfo
Source§fn clone(&self) -> DetailedGridInfo
fn clone(&self) -> DetailedGridInfo
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 DetailedGridInfo
impl Debug for DetailedGridInfo
Source§impl PartialEq for DetailedGridInfo
impl PartialEq for DetailedGridInfo
impl StructuralPartialEq for DetailedGridInfo
Auto Trait Implementations§
impl Freeze for DetailedGridInfo
impl RefUnwindSafe for DetailedGridInfo
impl Send for DetailedGridInfo
impl Sync for DetailedGridInfo
impl Unpin for DetailedGridInfo
impl UnwindSafe for DetailedGridInfo
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