pub struct StoredSession {
pub auth: AuthCredential,
pub account_namespace: Option<String>,
}Expand description
Stored session metadata.
Fields§
§auth: AuthCredentialAuth credential needed by the runtime.
account_namespace: Option<String>Optional account/store namespace chosen by the host.
Trait Implementations§
Source§impl Clone for StoredSession
impl Clone for StoredSession
Source§fn clone(&self) -> StoredSession
fn clone(&self) -> StoredSession
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 StoredSession
impl Debug for StoredSession
impl Eq for StoredSession
Source§impl PartialEq for StoredSession
impl PartialEq for StoredSession
impl StructuralPartialEq for StoredSession
Auto Trait Implementations§
impl Freeze for StoredSession
impl RefUnwindSafe for StoredSession
impl Send for StoredSession
impl Sync for StoredSession
impl Unpin for StoredSession
impl UnsafeUnpin for StoredSession
impl UnwindSafe for StoredSession
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