Enum UnsignedValue
pub enum UnsignedValue {
U32(u32),
U64(u64),
}Expand description
The constant floating-point value as an unsigned integer.
Variants§
Trait Implementations§
§impl Clone for UnsignedValue
impl Clone for UnsignedValue
§fn clone(&self) -> UnsignedValue
fn clone(&self) -> UnsignedValue
Returns a duplicate 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 more§impl Debug for UnsignedValue
impl Debug for UnsignedValue
§impl PartialEq for UnsignedValue
impl PartialEq for UnsignedValue
impl Copy for UnsignedValue
impl Eq for UnsignedValue
impl StructuralPartialEq for UnsignedValue
Auto Trait Implementations§
impl Freeze for UnsignedValue
impl RefUnwindSafe for UnsignedValue
impl Send for UnsignedValue
impl Sync for UnsignedValue
impl Unpin for UnsignedValue
impl UnwindSafe for UnsignedValue
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