Struct SetupCompletePayload
pub struct SetupCompletePayload {
pub session_resumption: Option<SessionResumptionResult>,
}Expand description
Payload for setup complete.
Fields§
§session_resumption: Option<SessionResumptionResult>Session resumption result, if resumption was requested.
Trait Implementations§
§impl Clone for SetupCompletePayload
impl Clone for SetupCompletePayload
§fn clone(&self) -> SetupCompletePayload
fn clone(&self) -> SetupCompletePayload
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for SetupCompletePayload
impl Debug for SetupCompletePayload
§impl<'de> Deserialize<'de> for SetupCompletePayload
impl<'de> Deserialize<'de> for SetupCompletePayload
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetupCompletePayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetupCompletePayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SetupCompletePayload
impl RefUnwindSafe for SetupCompletePayload
impl Send for SetupCompletePayload
impl Sync for SetupCompletePayload
impl Unpin for SetupCompletePayload
impl UnwindSafe for SetupCompletePayload
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