pub struct HandlerInfo {
pub subscription_id: SubscriptionId,
pub name: Option<&'static str>,
}Expand description
Information about a single registered handler, as reported by
BusStats.
Fields§
§subscription_id: SubscriptionIdThe unique subscription identifier.
name: Option<&'static str>Human-readable name, if the handler provides one.
Trait Implementations§
Source§impl Clone for HandlerInfo
impl Clone for HandlerInfo
Source§fn clone(&self) -> HandlerInfo
fn clone(&self) -> HandlerInfo
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 moreAuto Trait Implementations§
impl Freeze for HandlerInfo
impl RefUnwindSafe for HandlerInfo
impl Send for HandlerInfo
impl Sync for HandlerInfo
impl Unpin for HandlerInfo
impl UnsafeUnpin for HandlerInfo
impl UnwindSafe for HandlerInfo
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