pub struct MissingHandler {
pub kind: HandlerKind,
pub message_type_name: &'static str,
pub handler_type_name: &'static str,
}Expand description
One handler that was declared via the #[handler] attribute macro but
never registered through MediatorBuilder.
Fields§
§kind: HandlerKindKind of handler that was expected.
message_type_name: &'static strFully-qualified type name of the message type.
handler_type_name: &'static strFully-qualified type name of the handler type.
Trait Implementations§
Source§impl Clone for MissingHandler
impl Clone for MissingHandler
Source§fn clone(&self) -> MissingHandler
fn clone(&self) -> MissingHandler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MissingHandler
impl RefUnwindSafe for MissingHandler
impl Send for MissingHandler
impl Sync for MissingHandler
impl Unpin for MissingHandler
impl UnsafeUnpin for MissingHandler
impl UnwindSafe for MissingHandler
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