Enum lighthouse_sdk::types::EquatableOperator
source · pub enum EquatableOperator {
Equal,
NotEqual,
}Variants§
Trait Implementations§
source§impl BorshDeserialize for EquatableOperator
impl BorshDeserialize for EquatableOperator
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for EquatableOperator
impl BorshSerialize for EquatableOperator
source§impl Clone for EquatableOperator
impl Clone for EquatableOperator
source§fn clone(&self) -> EquatableOperator
fn clone(&self) -> EquatableOperator
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 EquatableOperator
impl Debug for EquatableOperator
source§impl EnumExt for EquatableOperator
impl EnumExt for EquatableOperator
source§impl Hash for EquatableOperator
impl Hash for EquatableOperator
source§impl PartialEq for EquatableOperator
impl PartialEq for EquatableOperator
source§fn eq(&self, other: &EquatableOperator) -> bool
fn eq(&self, other: &EquatableOperator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for EquatableOperator
impl PartialOrd for EquatableOperator
source§fn partial_cmp(&self, other: &EquatableOperator) -> Option<Ordering>
fn partial_cmp(&self, other: &EquatableOperator) -> 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 Eq for EquatableOperator
impl StructuralPartialEq for EquatableOperator
Auto Trait Implementations§
impl Freeze for EquatableOperator
impl RefUnwindSafe for EquatableOperator
impl Send for EquatableOperator
impl Sync for EquatableOperator
impl Unpin for EquatableOperator
impl UnwindSafe for EquatableOperator
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