#[non_exhaustive]pub enum LinearQuantityKind {
ShelfRunningLength(ShelfGeometry),
}Expand description
What linear quantity is being asked for.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ShelfRunningLength(ShelfGeometry)
Total running length of shelving fitting the given arrangement.
Implementations§
Trait Implementations§
Source§impl Clone for LinearQuantityKind
impl Clone for LinearQuantityKind
Source§fn clone(&self) -> LinearQuantityKind
fn clone(&self) -> LinearQuantityKind
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 moreimpl Copy for LinearQuantityKind
Source§impl Debug for LinearQuantityKind
impl Debug for LinearQuantityKind
Source§impl PartialEq for LinearQuantityKind
impl PartialEq for LinearQuantityKind
impl StructuralPartialEq for LinearQuantityKind
Auto Trait Implementations§
impl Freeze for LinearQuantityKind
impl RefUnwindSafe for LinearQuantityKind
impl Send for LinearQuantityKind
impl Sync for LinearQuantityKind
impl Unpin for LinearQuantityKind
impl UnsafeUnpin for LinearQuantityKind
impl UnwindSafe for LinearQuantityKind
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