pub struct GetSessionMetadataResponse {
pub session: Option<SessionMetadata>,
}Expand description
Response from session.getMetadata.
Fields§
§session: Option<SessionMetadata>The session metadata, or None if the session was not found.
Trait Implementations§
Source§impl Clone for GetSessionMetadataResponse
impl Clone for GetSessionMetadataResponse
Source§fn clone(&self) -> GetSessionMetadataResponse
fn clone(&self) -> GetSessionMetadataResponse
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 GetSessionMetadataResponse
impl Debug for GetSessionMetadataResponse
Source§impl<'de> Deserialize<'de> for GetSessionMetadataResponse
impl<'de> Deserialize<'de> for GetSessionMetadataResponse
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 GetSessionMetadataResponse
impl RefUnwindSafe for GetSessionMetadataResponse
impl Send for GetSessionMetadataResponse
impl Sync for GetSessionMetadataResponse
impl Unpin for GetSessionMetadataResponse
impl UnsafeUnpin for GetSessionMetadataResponse
impl UnwindSafe for GetSessionMetadataResponse
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