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