pub enum Event {
LSPS0Client(LSPS0ClientEvent),
LSPS1Client(LSPS1ClientEvent),
LSPS2Client(LSPS2ClientEvent),
LSPS2Service(LSPS2ServiceEvent),
}
Expand description
An event which you should probably take some action in response to.
Variants§
LSPS0Client(LSPS0ClientEvent)
An LSPS0 client event.
LSPS1Client(LSPS1ClientEvent)
An LSPS1 (Channel Request) client event.
LSPS2Client(LSPS2ClientEvent)
An LSPS2 (JIT Channel) client event.
LSPS2Service(LSPS2ServiceEvent)
An LSPS2 (JIT Channel) server event.
Trait Implementations§
impl Eq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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