pub struct FeagiSignalIndex(/* private fields */);Expand description
A unique identifier for a subscription to a FeagiSignal
Implementations§
Trait Implementations§
Source§impl Clone for FeagiSignalIndex
impl Clone for FeagiSignalIndex
Source§fn clone(&self) -> FeagiSignalIndex
fn clone(&self) -> FeagiSignalIndex
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 FeagiSignalIndex
impl Debug for FeagiSignalIndex
Source§impl Deref for FeagiSignalIndex
impl Deref for FeagiSignalIndex
Source§impl<'de> Deserialize<'de> for FeagiSignalIndex
impl<'de> Deserialize<'de> for FeagiSignalIndex
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FeagiSignalIndex
impl Display for FeagiSignalIndex
Source§impl From<FeagiSignalIndex> for u32
impl From<FeagiSignalIndex> for u32
Source§fn from(value: FeagiSignalIndex) -> Self
fn from(value: FeagiSignalIndex) -> Self
Converts to this type from the input type.
Source§impl From<u32> for FeagiSignalIndex
impl From<u32> for FeagiSignalIndex
Source§impl Hash for FeagiSignalIndex
impl Hash for FeagiSignalIndex
Source§impl Ord for FeagiSignalIndex
impl Ord for FeagiSignalIndex
Source§fn cmp(&self, other: &FeagiSignalIndex) -> Ordering
fn cmp(&self, other: &FeagiSignalIndex) -> 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 FeagiSignalIndex
impl PartialEq for FeagiSignalIndex
Source§impl PartialOrd for FeagiSignalIndex
impl PartialOrd for FeagiSignalIndex
Source§impl Serialize for FeagiSignalIndex
impl Serialize for FeagiSignalIndex
impl Copy for FeagiSignalIndex
impl Eq for FeagiSignalIndex
impl StructuralPartialEq for FeagiSignalIndex
Auto Trait Implementations§
impl Freeze for FeagiSignalIndex
impl RefUnwindSafe for FeagiSignalIndex
impl Send for FeagiSignalIndex
impl Sync for FeagiSignalIndex
impl Unpin for FeagiSignalIndex
impl UnwindSafe for FeagiSignalIndex
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more