pub enum Integer32Value {
Signed(i32),
Unsigned(u32),
}Expand description
Represents an enum value
Variants§
Trait Implementations§
Source§impl Clone for Integer32Value
impl Clone for Integer32Value
Source§fn clone(&self) -> Integer32Value
fn clone(&self) -> Integer32Value
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 moreSource§impl Debug for Integer32Value
impl Debug for Integer32Value
Source§impl PartialEq for Integer32Value
impl PartialEq for Integer32Value
impl Copy for Integer32Value
impl Eq for Integer32Value
impl StructuralPartialEq for Integer32Value
Auto Trait Implementations§
impl Freeze for Integer32Value
impl RefUnwindSafe for Integer32Value
impl Send for Integer32Value
impl Sync for Integer32Value
impl Unpin for Integer32Value
impl UnwindSafe for Integer32Value
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