pub struct SessionStateOnly {
pub id: Option<i64>,
pub state: Option<SessionState>,
}Expand description
Session information which has only its state information
Fields§
§id: Option<i64>§state: Option<SessionState>Trait Implementations§
Source§impl Debug for SessionStateOnly
impl Debug for SessionStateOnly
Source§impl<'de> Deserialize<'de> for SessionStateOnly
impl<'de> Deserialize<'de> for SessionStateOnly
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 SessionStateOnly
impl PartialEq for SessionStateOnly
Source§impl Serialize for SessionStateOnly
impl Serialize for SessionStateOnly
impl StructuralPartialEq for SessionStateOnly
Auto Trait Implementations§
impl Freeze for SessionStateOnly
impl RefUnwindSafe for SessionStateOnly
impl Send for SessionStateOnly
impl Sync for SessionStateOnly
impl Unpin for SessionStateOnly
impl UnwindSafe for SessionStateOnly
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