pub enum ServiceCoreResponse {
ClientAuth {
session: Option<AuthenticatedSession>,
response: MwsMessage,
},
ClientRequest {
response_payload: Option<String>,
client_info: MwsClientInfo,
},
ConversationRequest {
response_payload: Option<String>,
},
NodeAuth(NodeAuthResponse),
HubConnectionProof(HubConnectionProofResponse),
NodeRequest {
response_payload: Option<String>,
},
LocalSessionToken(String),
Ack {
handled: bool,
},
}Variants§
ClientAuth
ClientRequest
ConversationRequest
NodeAuth(NodeAuthResponse)
HubConnectionProof(HubConnectionProofResponse)
NodeRequest
LocalSessionToken(String)
Ack
Trait Implementations§
Source§impl Clone for ServiceCoreResponse
impl Clone for ServiceCoreResponse
Source§fn clone(&self) -> ServiceCoreResponse
fn clone(&self) -> ServiceCoreResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ServiceCoreResponse
impl Debug for ServiceCoreResponse
Source§impl<'de> Deserialize<'de> for ServiceCoreResponse
impl<'de> Deserialize<'de> for ServiceCoreResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ServiceCoreResponse
impl RefUnwindSafe for ServiceCoreResponse
impl Send for ServiceCoreResponse
impl Sync for ServiceCoreResponse
impl Unpin for ServiceCoreResponse
impl UnsafeUnpin for ServiceCoreResponse
impl UnwindSafe for ServiceCoreResponse
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