pub struct ColumnStartSnapshot {
pub all: BTreeMap<Arc<str>, f32>,
pub left: BTreeMap<Arc<str>, Option<f32>>,
pub center: BTreeMap<Arc<str>, Option<f32>>,
pub right: BTreeMap<Arc<str>, Option<f32>>,
}Fields§
§all: BTreeMap<Arc<str>, f32>§left: BTreeMap<Arc<str>, Option<f32>>§center: BTreeMap<Arc<str>, Option<f32>>§right: BTreeMap<Arc<str>, Option<f32>>Trait Implementations§
Source§impl Clone for ColumnStartSnapshot
impl Clone for ColumnStartSnapshot
Source§fn clone(&self) -> ColumnStartSnapshot
fn clone(&self) -> ColumnStartSnapshot
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 ColumnStartSnapshot
impl Debug for ColumnStartSnapshot
Source§impl PartialEq for ColumnStartSnapshot
impl PartialEq for ColumnStartSnapshot
impl StructuralPartialEq for ColumnStartSnapshot
Auto Trait Implementations§
impl Freeze for ColumnStartSnapshot
impl RefUnwindSafe for ColumnStartSnapshot
impl Send for ColumnStartSnapshot
impl Sync for ColumnStartSnapshot
impl Unpin for ColumnStartSnapshot
impl UnsafeUnpin for ColumnStartSnapshot
impl UnwindSafe for ColumnStartSnapshot
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