pub enum BaseType<'a> {
Boolean,
Byte,
Short,
Integer,
Long,
Float,
Double,
Char,
Object(&'a MStr),
}Expand description
A field type descriptor not wrapped within an array.
Variants§
Trait Implementations§
impl<'a> Eq for BaseType<'a>
Source§impl<'a> Ord for BaseType<'a>
impl<'a> Ord for BaseType<'a>
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialEq for BaseType<'a>
impl<'a> PartialEq for BaseType<'a>
Source§impl<'a> PartialOrd for BaseType<'a>
impl<'a> PartialOrd for BaseType<'a>
impl<'a> StructuralPartialEq for BaseType<'a>
Auto Trait Implementations§
impl<'a> Freeze for BaseType<'a>
impl<'a> RefUnwindSafe for BaseType<'a>
impl<'a> Send for BaseType<'a>
impl<'a> Sync for BaseType<'a>
impl<'a> Unpin for BaseType<'a>
impl<'a> UnsafeUnpin for BaseType<'a>
impl<'a> UnwindSafe for BaseType<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.