pub struct MemorixPubSubItem<K, P, PU, S> { /* private fields */ }
Implementations§
Source§impl<K: Serialize, P: DeserializeOwned + Serialize, PU, S> MemorixPubSubItem<K, P, PU, S>
impl<K: Serialize, P: DeserializeOwned + Serialize, PU, S> MemorixPubSubItem<K, P, PU, S>
Source§impl<K: Serialize, P: DeserializeOwned + Serialize, PU: CanPubSubPublish, S> MemorixPubSubItem<K, P, PU, S>
impl<K: Serialize, P: DeserializeOwned + Serialize, PU: CanPubSubPublish, S> MemorixPubSubItem<K, P, PU, S>
Trait Implementations§
Auto Trait Implementations§
impl<K, P, PU, S> Freeze for MemorixPubSubItem<K, P, PU, S>
impl<K, P, PU, S> RefUnwindSafe for MemorixPubSubItem<K, P, PU, S>
impl<K, P, PU, S> Send for MemorixPubSubItem<K, P, PU, S>
impl<K, P, PU, S> Sync for MemorixPubSubItem<K, P, PU, S>
impl<K, P, PU, S> Unpin for MemorixPubSubItem<K, P, PU, S>
impl<K, P, PU, S> UnwindSafe for MemorixPubSubItem<K, P, PU, S>
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