pub struct IngestEnvelope<'a> {
pub org_id: &'a str,
pub auth_subject: &'a str,
pub harness_id: &'a str,
pub harness_session_id: &'a str,
pub harness_version: Option<&'a str>,
pub cwd: Option<&'a str>,
}Expand description
Session envelope, field-for-field with tapes’ pkg/sessions.IngestEnvelope
(the subset the transcript lane populates).
Fields§
§org_id: &'a strEmpty string when unknown — never omitted; see the module docs.
auth_subject: &'a strEmpty string when unknown — never omitted; see the module docs.
harness_id: &'a strWhich harness produced the transcript.
harness_session_id: &'a strThe harness session id; REQUIRED by the server for transcripts.
harness_version: Option<&'a str>Harness version, omitted when unknown.
cwd: Option<&'a str>Working directory, omitted when unknown.
Trait Implementations§
Source§impl<'a> Debug for IngestEnvelope<'a>
impl<'a> Debug for IngestEnvelope<'a>
Auto Trait Implementations§
impl<'a> Freeze for IngestEnvelope<'a>
impl<'a> RefUnwindSafe for IngestEnvelope<'a>
impl<'a> Send for IngestEnvelope<'a>
impl<'a> Sync for IngestEnvelope<'a>
impl<'a> Unpin for IngestEnvelope<'a>
impl<'a> UnsafeUnpin for IngestEnvelope<'a>
impl<'a> UnwindSafe for IngestEnvelope<'a>
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