pub struct ActorSession {
pub uid: Option<String>,
}Expand description
Minimal session object within an Actor.
Fields§
§uid: Option<String>Session UID.
Trait Implementations§
Source§impl Clone for ActorSession
impl Clone for ActorSession
Source§fn clone(&self) -> ActorSession
fn clone(&self) -> ActorSession
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 moreSource§impl Debug for ActorSession
impl Debug for ActorSession
Source§impl<'de> Deserialize<'de> for ActorSession
impl<'de> Deserialize<'de> for ActorSession
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
Source§impl PartialEq for ActorSession
impl PartialEq for ActorSession
Source§impl Serialize for ActorSession
impl Serialize for ActorSession
impl Eq for ActorSession
impl StructuralPartialEq for ActorSession
Auto Trait Implementations§
impl Freeze for ActorSession
impl RefUnwindSafe for ActorSession
impl Send for ActorSession
impl Sync for ActorSession
impl Unpin for ActorSession
impl UnsafeUnpin for ActorSession
impl UnwindSafe for ActorSession
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