#[non_exhaustive]#[repr(u8)]pub enum TissueModelType {
Zhl16c = 0,
}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.
Zhl16c = 0
Implementations§
Trait Implementations§
Source§impl Clone for TissueModelType
impl Clone for TissueModelType
Source§fn clone(&self) -> TissueModelType
fn clone(&self) -> TissueModelType
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 moreSource§impl Debug for TissueModelType
impl Debug for TissueModelType
Source§impl Hash for TissueModelType
impl Hash for TissueModelType
Source§impl PartialEq for TissueModelType
impl PartialEq for TissueModelType
Source§fn eq(&self, other: &TissueModelType) -> bool
fn eq(&self, other: &TissueModelType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TissueModelType
impl Eq for TissueModelType
impl StructuralPartialEq for TissueModelType
Auto Trait Implementations§
impl Freeze for TissueModelType
impl RefUnwindSafe for TissueModelType
impl Send for TissueModelType
impl Sync for TissueModelType
impl Unpin for TissueModelType
impl UnsafeUnpin for TissueModelType
impl UnwindSafe for TissueModelType
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