pub enum TissueType {
Bone,
Cartilage,
Tendon,
Skin,
Muscle,
Artery,
Custom(String),
}Expand description
Classification of biological tissue type.
Variants§
Bone
Cortical or trabecular bone.
Cartilage
Articular or fibrocartilage.
Tendon
Tendon or ligament.
Skin
Dermis / epidermis.
Muscle
Skeletal or cardiac muscle.
Artery
Arterial wall tissue.
Custom(String)
User-defined tissue with a label.
Trait Implementations§
Source§impl Clone for TissueType
impl Clone for TissueType
Source§fn clone(&self) -> TissueType
fn clone(&self) -> TissueType
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 TissueType
impl Debug for TissueType
Source§impl PartialEq for TissueType
impl PartialEq for TissueType
Source§fn eq(&self, other: &TissueType) -> bool
fn eq(&self, other: &TissueType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TissueType
Auto Trait Implementations§
impl Freeze for TissueType
impl RefUnwindSafe for TissueType
impl Send for TissueType
impl Sync for TissueType
impl Unpin for TissueType
impl UnsafeUnpin for TissueType
impl UnwindSafe for TissueType
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