Enum osiris_process::operation::scheme::ArgumentValue
source · pub enum ArgumentValue {
OneU32(u32),
TwoU16(u16, u16),
FourU8(u8, u8, u8, u8),
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for ArgumentValue
impl Clone for ArgumentValue
source§fn clone(&self) -> ArgumentValue
fn clone(&self) -> ArgumentValue
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 ArgumentValue
impl Debug for ArgumentValue
source§impl Display for ArgumentValue
impl Display for ArgumentValue
source§impl Ord for ArgumentValue
impl Ord for ArgumentValue
source§fn cmp(&self, other: &ArgumentValue) -> Ordering
fn cmp(&self, other: &ArgumentValue) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ArgumentValue
impl PartialEq for ArgumentValue
source§fn eq(&self, other: &ArgumentValue) -> bool
fn eq(&self, other: &ArgumentValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ArgumentValue
impl PartialOrd for ArgumentValue
source§fn partial_cmp(&self, other: &ArgumentValue) -> Option<Ordering>
fn partial_cmp(&self, other: &ArgumentValue) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ArgumentValue
impl Eq for ArgumentValue
impl StructuralPartialEq for ArgumentValue
Auto Trait Implementations§
impl Freeze for ArgumentValue
impl RefUnwindSafe for ArgumentValue
impl Send for ArgumentValue
impl Sync for ArgumentValue
impl Unpin for ArgumentValue
impl UnwindSafe for ArgumentValue
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