pub enum SimpleTypeVariety {
Atomic,
List,
Union,
}Expand description
Simple type variety
Variants§
Trait Implementations§
Source§impl Clone for SimpleTypeVariety
impl Clone for SimpleTypeVariety
Source§fn clone(&self) -> SimpleTypeVariety
fn clone(&self) -> SimpleTypeVariety
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 SimpleTypeVariety
Source§impl Debug for SimpleTypeVariety
impl Debug for SimpleTypeVariety
impl Eq for SimpleTypeVariety
Source§impl PartialEq for SimpleTypeVariety
impl PartialEq for SimpleTypeVariety
Source§fn eq(&self, other: &SimpleTypeVariety) -> bool
fn eq(&self, other: &SimpleTypeVariety) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SimpleTypeVariety
Auto Trait Implementations§
impl Freeze for SimpleTypeVariety
impl RefUnwindSafe for SimpleTypeVariety
impl Send for SimpleTypeVariety
impl Sync for SimpleTypeVariety
impl Unpin for SimpleTypeVariety
impl UnsafeUnpin for SimpleTypeVariety
impl UnwindSafe for SimpleTypeVariety
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