Skip to main content

TranscriptSession

Struct TranscriptSession 

Source
pub struct TranscriptSession {
    pub harness_id: String,
    pub harness_session_id: String,
    pub harness_version: Option<String>,
    pub cwd: Option<String>,
    pub org_id: String,
    pub auth_subject: String,
}
Expand description

The session a transcript belongs to, as the ingest lane needs it.

A client’s own session registry will carry more than this (a pid to watch, bookkeeping for backoff); this is the subset that reaches the wire. Kept owned rather than borrowed so a client can build one from a swept transcript (see super::sweep) as easily as from a live registry entry.

Fields§

§harness_id: String

Which harness produced it — claude today. Should match the X-Tapes-Harness-Id the same session’s wire traffic carries, so the deriver fuses both sources under one session row.

§harness_session_id: String

The harness session id. Required by the server for transcripts; it is what names <sid>.jsonl and keys the upload.

§harness_version: Option<String>

Harness version, when known.

§cwd: Option<String>

Working directory the harness ran in, when known.

§org_id: String

Organization id, or empty.

The server’s envelope validation requires a UUID here, so a client whose own organization identifier is some other shape leaves this empty deliberately rather than sending a value that would be rejected. That is not a loss: on a deployment with an authenticating edge, the wire-capture path derives org identity from the validated credential rather than from this envelope.

§auth_subject: String

Acting subject, or empty. A standalone client conventionally sets local:<os-username>; on the platform the cloud edge stamps it from validated JWT claims. Nothing parses the prefix — see crate::attribution::Attribution::auth_subject.

Implementations§

Source§

impl TranscriptSession

Source

pub fn new( harness_id: impl Into<String>, harness_session_id: impl Into<String>, ) -> Self

A session envelope with only the required fields set.

Source

pub fn with_harness_version(self, version: Option<String>) -> Self

Set the harness version.

Source

pub fn with_cwd(self, cwd: Option<String>) -> Self

Set the working directory.

Source

pub fn with_auth_subject(self, auth_subject: impl Into<String>) -> Self

Set the acting subject.

Trait Implementations§

Source§

impl Clone for TranscriptSession

Source§

fn clone(&self) -> TranscriptSession

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TranscriptSession

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for TranscriptSession

Source§

impl PartialEq for TranscriptSession

Source§

fn eq(&self, other: &TranscriptSession) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for TranscriptSession

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more