pub struct SessionHeader {
pub version: Option<u64>,
pub id: Option<String>,
pub timestamp: Option<String>,
pub cwd: Option<String>,
pub parent_session: Option<String>,
pub extra: Map<String, Value>,
/* private fields */
}Expand description
Session file header (type: "session"). First parseable line of a valid file.
Fields§
§version: Option<u64>Format version. Absent on v1 files; written as 3 for new sessions.
id: Option<String>Session UUID (uuidv7 on create). Validated as a string by the loader.
timestamp: Option<String>ISO-8601 timestamp with millisecond precision and Z suffix.
cwd: Option<String>Working directory captured at session creation (resolved absolute path).
parent_session: Option<String>Filesystem path of the parent session when this session was forked/branched.
extra: Map<String, Value>Unknown header fields preserved across rewrites.
Implementations§
Trait Implementations§
Source§impl Clone for SessionHeader
impl Clone for SessionHeader
Source§fn clone(&self) -> SessionHeader
fn clone(&self) -> SessionHeader
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 SessionHeader
impl Debug for SessionHeader
Source§impl<'de> Deserialize<'de> for SessionHeader
impl<'de> Deserialize<'de> for SessionHeader
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 SessionHeader
impl PartialEq for SessionHeader
Source§impl Serialize for SessionHeader
impl Serialize for SessionHeader
impl StructuralPartialEq for SessionHeader
Auto Trait Implementations§
impl Freeze for SessionHeader
impl RefUnwindSafe for SessionHeader
impl Send for SessionHeader
impl Sync for SessionHeader
impl Unpin for SessionHeader
impl UnsafeUnpin for SessionHeader
impl UnwindSafe for SessionHeader
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.