pub struct Value32(/* private fields */);Expand description
A 32-bit value.
Trait Implementations§
Source§impl Ord for Value32
impl Ord for Value32
Source§impl PartialOrd for Value32
impl PartialOrd for Value32
Source§impl Value for Value32
impl Value for Value32
Source§fn from_number(number: Self::Number) -> Self
fn from_number(number: Self::Number) -> Self
Converts a number to a value.
Source§fn from_pointer(pointer: Self::Pointer) -> Self
fn from_pointer(pointer: Self::Pointer) -> Self
Converts a pointer to a value.
Source§fn to_pointer(self) -> Self::Pointer
fn to_pointer(self) -> Self::Pointer
Converts a value to a pointer.
Source§fn is_pointer(self) -> bool
fn is_pointer(self) -> bool
Checks if a value is a pointer.
impl Copy for Value32
impl Eq for Value32
impl StructuralPartialEq for Value32
Auto Trait Implementations§
impl Freeze for Value32
impl RefUnwindSafe for Value32
impl Send for Value32
impl Sync for Value32
impl Unpin for Value32
impl UnwindSafe for Value32
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