pub enum DataStructure {
GroupedData,
RegularArray,
NestedArrays,
Mixed,
}Expand description
データ構造の種類を判定
Variants§
Trait Implementations§
Source§impl Debug for DataStructure
impl Debug for DataStructure
Source§impl PartialEq for DataStructure
impl PartialEq for DataStructure
Source§fn eq(&self, other: &DataStructure) -> bool
fn eq(&self, other: &DataStructure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataStructure
Auto Trait Implementations§
impl Freeze for DataStructure
impl RefUnwindSafe for DataStructure
impl Send for DataStructure
impl Sync for DataStructure
impl Unpin for DataStructure
impl UnsafeUnpin for DataStructure
impl UnwindSafe for DataStructure
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