pub enum EventType {
OnJsonApiEvent,
OnLcdsEvent,
OnLog,
OnRegionLocaleChanged,
OnServiceProxyAsyncEvent,
OnServiceProxyMethodEvent,
OnServiceProxyUuidEvent,
OnJsonApiEventCallback(String),
OnLcdsEventCallback(String),
}
Expand description
Different event types that can be passed to the subscribe and unsubscribe methods.
Variants§
OnJsonApiEvent
OnLcdsEvent
OnLog
OnRegionLocaleChanged
OnServiceProxyAsyncEvent
OnServiceProxyMethodEvent
OnServiceProxyUuidEvent
OnJsonApiEventCallback(String)
OnLcdsEventCallback(String)
Trait Implementations§
impl Eq for EventType
impl StructuralPartialEq for EventType
Auto Trait Implementations§
impl Freeze for EventType
impl RefUnwindSafe for EventType
impl Send for EventType
impl Sync for EventType
impl Unpin for EventType
impl UnwindSafe for EventType
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