pub enum ObjInsArgValue {
    Signed(i64),
    Unsigned(u64),
    Opaque(Cow<'static, str>),
}Variants§
Implementations§
source§impl ObjInsArgValue
 
impl ObjInsArgValue
pub fn loose_eq(&self, other: &ObjInsArgValue) -> bool
Trait Implementations§
source§impl Clone for ObjInsArgValue
 
impl Clone for ObjInsArgValue
source§fn clone(&self) -> ObjInsArgValue
 
fn clone(&self) -> ObjInsArgValue
Returns a copy of the value. Read more
1.6.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 ObjInsArgValue
 
impl Debug for ObjInsArgValue
source§impl Display for ObjInsArgValue
 
impl Display for ObjInsArgValue
source§impl From<&ObjInsArgValue> for ArgumentValue
 
impl From<&ObjInsArgValue> for ArgumentValue
source§fn from(value: &ObjInsArgValue) -> Self
 
fn from(value: &ObjInsArgValue) -> Self
Converts to this type from the input type.
source§impl PartialEq for ObjInsArgValue
 
impl PartialEq for ObjInsArgValue
impl Eq for ObjInsArgValue
impl StructuralPartialEq for ObjInsArgValue
Auto Trait Implementations§
impl Freeze for ObjInsArgValue
impl RefUnwindSafe for ObjInsArgValue
impl Send for ObjInsArgValue
impl Sync for ObjInsArgValue
impl Unpin for ObjInsArgValue
impl UnwindSafe for ObjInsArgValue
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.