pub struct Extension<T>(pub T);Available on crate feature
extensions only.Expand description
An Extractor that returns the extension of the given type.
If the extension is not found,
the handler won’t be called and an error log will be print if the tracing feature is enabled.
You can use MaybeExtension if the extensions you are requesting may not exists.
Tuple Fields§
§0: TTrait Implementations§
Source§impl<A: Adapter, T: Clone + Send + Sync + 'static> FromConnectParts<A> for Extension<T>
impl<A: Adapter, T: Clone + Send + Sync + 'static> FromConnectParts<A> for Extension<T>
Source§type Error = ExtensionNotFound<T>
type Error = ExtensionNotFound<T>
The error type returned by the extractor
Source§fn from_connect_parts(
s: &Arc<Socket<A>>,
_: &Option<Value>,
) -> Result<Self, ExtensionNotFound<T>>
fn from_connect_parts( s: &Arc<Socket<A>>, _: &Option<Value>, ) -> Result<Self, ExtensionNotFound<T>>
Extract the arguments from the connect event.
If it fails, the handler is not called
Source§impl<A: Adapter, T: Clone + Send + Sync + 'static> FromDisconnectParts<A> for Extension<T>
impl<A: Adapter, T: Clone + Send + Sync + 'static> FromDisconnectParts<A> for Extension<T>
Source§type Error = ExtensionNotFound<T>
type Error = ExtensionNotFound<T>
The error type returned by the extractor
Source§fn from_disconnect_parts(
s: &Arc<Socket<A>>,
_: DisconnectReason,
) -> Result<Self, ExtensionNotFound<T>>
fn from_disconnect_parts( s: &Arc<Socket<A>>, _: DisconnectReason, ) -> Result<Self, ExtensionNotFound<T>>
Extract the arguments from the disconnect event.
If it fails, the handler is not called
Source§impl<A: Adapter, T: Clone + Send + Sync + 'static> FromMessageParts<A> for Extension<T>
impl<A: Adapter, T: Clone + Send + Sync + 'static> FromMessageParts<A> for Extension<T>
Source§type Error = ExtensionNotFound<T>
type Error = ExtensionNotFound<T>
The error type returned by the extractor
Source§fn from_message_parts(
s: &Arc<Socket<A>>,
_: &mut Value,
_: &Option<i64>,
) -> Result<Self, ExtensionNotFound<T>>
fn from_message_parts( s: &Arc<Socket<A>>, _: &mut Value, _: &Option<i64>, ) -> Result<Self, ExtensionNotFound<T>>
Extract the arguments from the message event.
If it fails, the handler is not called.
Auto Trait Implementations§
impl<T> Freeze for Extension<T>where
T: Freeze,
impl<T> RefUnwindSafe for Extension<T>where
T: RefUnwindSafe,
impl<T> Send for Extension<T>where
T: Send,
impl<T> Sync for Extension<T>where
T: Sync,
impl<T> Unpin for Extension<T>where
T: Unpin,
impl<T> UnwindSafe for Extension<T>where
T: 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