pub enum Inbound {
ClientResponse(ClientResponse),
Scoped(ScopedEvent),
ResolvedRequest(RpcId),
GlobalServerError(ServerError),
ModelReroute(ModelReroute),
UnsupportedServerRequest(ServerRequest),
IgnoredNotification {
method: String,
},
Malformed(Error),
}Variants§
ClientResponse(ClientResponse)
Scoped(ScopedEvent)
ResolvedRequest(RpcId)
GlobalServerError(ServerError)
ModelReroute(ModelReroute)
UnsupportedServerRequest(ServerRequest)
IgnoredNotification
Malformed(Error)
Trait Implementations§
impl StructuralPartialEq for Inbound
Auto Trait Implementations§
impl Freeze for Inbound
impl RefUnwindSafe for Inbound
impl Send for Inbound
impl Sync for Inbound
impl Unpin for Inbound
impl UnsafeUnpin for Inbound
impl UnwindSafe for Inbound
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