Enum abbau_types::FloatTypeRef
source · pub enum FloatTypeRef {
Float4(EndianSpec),
Float8(EndianSpec),
}
Expand description
Float byte width specification
Variants§
Float4(EndianSpec)
32 bit IEEE floating point number (single precision)
Float8(EndianSpec)
64 bit IEEE floating point number (double precision)
Implementations§
source§impl FloatTypeRef
impl FloatTypeRef
Trait Implementations§
source§impl Clone for FloatTypeRef
impl Clone for FloatTypeRef
source§fn clone(&self) -> FloatTypeRef
fn clone(&self) -> FloatTypeRef
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 FloatTypeRef
impl Debug for FloatTypeRef
source§impl PartialEq<FloatTypeRef> for FloatTypeRef
impl PartialEq<FloatTypeRef> for FloatTypeRef
source§fn eq(&self, other: &FloatTypeRef) -> bool
fn eq(&self, other: &FloatTypeRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FloatTypeRef
impl Eq for FloatTypeRef
impl StructuralEq for FloatTypeRef
impl StructuralPartialEq for FloatTypeRef
Auto Trait Implementations§
impl RefUnwindSafe for FloatTypeRef
impl Send for FloatTypeRef
impl Sync for FloatTypeRef
impl Unpin for FloatTypeRef
impl UnwindSafe for FloatTypeRef
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