pub struct SessionInfoEntry {
pub id: String,
pub parent_id: Option<String>,
pub timestamp: String,
pub name: String,
}Fields§
§id: String§parent_id: Option<String>§timestamp: String§name: StringTrait Implementations§
Source§impl Clone for SessionInfoEntry
impl Clone for SessionInfoEntry
Source§fn clone(&self) -> SessionInfoEntry
fn clone(&self) -> SessionInfoEntry
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 SessionInfoEntry
impl Debug for SessionInfoEntry
Source§impl<'de> Deserialize<'de> for SessionInfoEntry
impl<'de> Deserialize<'de> for SessionInfoEntry
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 SessionInfoEntry
impl RefUnwindSafe for SessionInfoEntry
impl Send for SessionInfoEntry
impl Sync for SessionInfoEntry
impl Unpin for SessionInfoEntry
impl UnsafeUnpin for SessionInfoEntry
impl UnwindSafe for SessionInfoEntry
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