#[non_exhaustive]pub enum GridStorage {
Cells,
TraversalCosts,
}Expand description
Storage buffer that could not be allocated while constructing a grid.
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.
Trait Implementations§
Source§impl Clone for GridStorage
impl Clone for GridStorage
Source§fn clone(&self) -> GridStorage
fn clone(&self) -> GridStorage
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 GridStorage
Source§impl Debug for GridStorage
impl Debug for GridStorage
Source§impl Display for GridStorage
impl Display for GridStorage
impl Eq for GridStorage
Source§impl PartialEq for GridStorage
impl PartialEq for GridStorage
impl StructuralPartialEq for GridStorage
Auto Trait Implementations§
impl Freeze for GridStorage
impl RefUnwindSafe for GridStorage
impl Send for GridStorage
impl Sync for GridStorage
impl Unpin for GridStorage
impl UnsafeUnpin for GridStorage
impl UnwindSafe for GridStorage
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