pub enum IotHubModuleEvent {
Message(IotHubMessage),
Twin(Value),
}
Expand description
Enum to describe the type of module event.
Variants§
Message(IotHubMessage)
Twin(Value)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IotHubModuleEvent
impl RefUnwindSafe for IotHubModuleEvent
impl !Send for IotHubModuleEvent
impl !Sync for IotHubModuleEvent
impl Unpin for IotHubModuleEvent
impl UnwindSafe for IotHubModuleEvent
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