Enum lighthouse_sdk::types::ByteSliceOperator
source · pub enum ByteSliceOperator {
Equal,
NotEqual,
}Variants§
Trait Implementations§
source§impl BorshDeserialize for ByteSliceOperator
impl BorshDeserialize for ByteSliceOperator
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 ByteSliceOperator
impl BorshSerialize for ByteSliceOperator
source§impl Clone for ByteSliceOperator
impl Clone for ByteSliceOperator
source§fn clone(&self) -> ByteSliceOperator
fn clone(&self) -> ByteSliceOperator
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 ByteSliceOperator
impl Debug for ByteSliceOperator
source§impl EnumExt for ByteSliceOperator
impl EnumExt for ByteSliceOperator
source§impl Hash for ByteSliceOperator
impl Hash for ByteSliceOperator
source§impl PartialEq for ByteSliceOperator
impl PartialEq for ByteSliceOperator
source§fn eq(&self, other: &ByteSliceOperator) -> bool
fn eq(&self, other: &ByteSliceOperator) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for ByteSliceOperator
impl PartialOrd for ByteSliceOperator
source§fn partial_cmp(&self, other: &ByteSliceOperator) -> Option<Ordering>
fn partial_cmp(&self, other: &ByteSliceOperator) -> 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 ByteSliceOperator
impl StructuralPartialEq for ByteSliceOperator
Auto Trait Implementations§
impl Freeze for ByteSliceOperator
impl RefUnwindSafe for ByteSliceOperator
impl Send for ByteSliceOperator
impl Sync for ByteSliceOperator
impl Unpin for ByteSliceOperator
impl UnwindSafe for ByteSliceOperator
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