Enum abbau_types::WellKnownTypeRef 
source · pub enum WellKnownTypeRef {
    Unsigned(IntTypeRef),
    Signed(IntTypeRef),
    Float(FloatTypeRef),
    Str,
    StrZ,
}Expand description
Well known TypeRefs
Variants§
Unsigned(IntTypeRef)
unsigned integer
Signed(IntTypeRef)
signed integer
Float(FloatTypeRef)
floating point number
Str
String
StrZ
Nul-Terminated String
Trait Implementations§
source§impl Clone for WellKnownTypeRef
 
impl Clone for WellKnownTypeRef
source§fn clone(&self) -> WellKnownTypeRef
 
fn clone(&self) -> WellKnownTypeRef
Returns a copy of the value. Read more
1.0.0 · 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 WellKnownTypeRef
 
impl Debug for WellKnownTypeRef
source§impl FromStr for WellKnownTypeRef
 
impl FromStr for WellKnownTypeRef
source§impl PartialEq<WellKnownTypeRef> for WellKnownTypeRef
 
impl PartialEq<WellKnownTypeRef> for WellKnownTypeRef
source§fn eq(&self, other: &WellKnownTypeRef) -> bool
 
fn eq(&self, other: &WellKnownTypeRef) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for WellKnownTypeRef
impl Eq for WellKnownTypeRef
impl StructuralEq for WellKnownTypeRef
impl StructuralPartialEq for WellKnownTypeRef
Auto Trait Implementations§
impl RefUnwindSafe for WellKnownTypeRef
impl Send for WellKnownTypeRef
impl Sync for WellKnownTypeRef
impl Unpin for WellKnownTypeRef
impl UnwindSafe for WellKnownTypeRef
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