#[non_exhaustive]pub enum BehaviorEvent<TEvent, THandlerAction> {
Behavior(TEvent),
HandlerAction {
peer_id: PeerId,
handler: NotifyHandler,
action: THandlerAction,
},
CloseConnection {
peer_id: PeerId,
connection: CloseConnection,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Source§impl<TEvent, THandlerAction> BehaviorEvent<TEvent, THandlerAction>
impl<TEvent, THandlerAction> BehaviorEvent<TEvent, THandlerAction>
pub fn map_handler_action<O, F>(self, f: F) -> BehaviorEvent<TEvent, O>where
F: FnOnce(THandlerAction) -> O,
pub fn map_event<O, F>(self, f: F) -> BehaviorEvent<O, THandlerAction>where
F: FnOnce(TEvent) -> O,
Trait Implementations§
Auto Trait Implementations§
impl<TEvent, THandlerAction> Freeze for BehaviorEvent<TEvent, THandlerAction>
impl<TEvent, THandlerAction> RefUnwindSafe for BehaviorEvent<TEvent, THandlerAction>where
TEvent: RefUnwindSafe,
THandlerAction: RefUnwindSafe,
impl<TEvent, THandlerAction> Send for BehaviorEvent<TEvent, THandlerAction>
impl<TEvent, THandlerAction> Sync for BehaviorEvent<TEvent, THandlerAction>
impl<TEvent, THandlerAction> Unpin for BehaviorEvent<TEvent, THandlerAction>
impl<TEvent, THandlerAction> UnsafeUnpin for BehaviorEvent<TEvent, THandlerAction>where
TEvent: UnsafeUnpin,
THandlerAction: UnsafeUnpin,
impl<TEvent, THandlerAction> UnwindSafe for BehaviorEvent<TEvent, THandlerAction>where
TEvent: UnwindSafe,
THandlerAction: UnwindSafe,
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
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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