pub struct ColumnAfterSnapshot {
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 ColumnAfterSnapshot
impl Clone for ColumnAfterSnapshot
Source§fn clone(&self) -> ColumnAfterSnapshot
fn clone(&self) -> ColumnAfterSnapshot
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 ColumnAfterSnapshot
impl Debug for ColumnAfterSnapshot
Source§impl PartialEq for ColumnAfterSnapshot
impl PartialEq for ColumnAfterSnapshot
impl StructuralPartialEq for ColumnAfterSnapshot
Auto Trait Implementations§
impl Freeze for ColumnAfterSnapshot
impl RefUnwindSafe for ColumnAfterSnapshot
impl Send for ColumnAfterSnapshot
impl Sync for ColumnAfterSnapshot
impl Unpin for ColumnAfterSnapshot
impl UnsafeUnpin for ColumnAfterSnapshot
impl UnwindSafe for ColumnAfterSnapshot
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