pub enum Callback {
Binding(Handler),
Bootloader(Handler),
Cbke(Handler),
GreenPower(Handler),
Messaging(Handler),
MfgLib(Handler),
Networking(Handler),
Security(Handler),
TrustCenter(Handler),
Utilities(Handler),
Zll(Handler),
}Expand description
Callback parameters grouped by parameter namespace.
Variants§
Binding(Handler)
Binding parameters.
Bootloader(Handler)
Bootloader parameters.
Cbke(Handler)
Cbke parameters.
GreenPower(Handler)
GreenPower parameters.
Messaging(Handler)
Messaging parameters.
MfgLib(Handler)
MfgLib parameters.
Networking(Handler)
Networking parameters.
Security(Handler)
Security parameters.
TrustCenter(Handler)
TrustCenter parameters.
Utilities(Handler)
Utilities parameters.
Zll(Handler)
Zll parameters.
Trait Implementations§
impl Eq for Callback
impl StructuralPartialEq for Callback
Source§impl TryFrom<Parameters> for Callback
impl TryFrom<Parameters> for Callback
Source§type Error = Parameters
type Error = Parameters
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for Callback
impl RefUnwindSafe for Callback
impl Send for Callback
impl Sync for Callback
impl Unpin for Callback
impl UnsafeUnpin for Callback
impl UnwindSafe for Callback
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