Skip to main content

AuditEvent

Struct AuditEvent 

Source
#[non_exhaustive]
pub struct AuditEvent { pub ts: SystemTime, pub event: &'static str, pub url_scheme: String, pub dst_scheme: Option<String>, pub outcome: &'static str, pub error_kind: Option<&'static str>, }
Expand description

A redacted audit event.

Constructed via AuditEvent::start or AuditEvent::done; the struct is #[non_exhaustive] so external crates cannot widen the field set by struct-literal initialization. Sink implementations receive &AuditEvent and can serialize whichever fields they expose — but every field is, by construction, value-free.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§ts: SystemTime§event: &'static str§url_scheme: String§dst_scheme: Option<String>§outcome: &'static str§error_kind: Option<&'static str>

Implementations§

Source§

impl AuditEvent

Source

pub fn start(verb: Verb, scheme: impl Into<String>) -> Self

Build a *.start event for verb operating on a URL with scheme. Default outcome is "started".

Source

pub fn done( verb: Verb, scheme: impl Into<String>, outcome: &'static str, ) -> Self

Build a *.done event for verb with the given outcome label.

Source

pub fn with_dst_scheme(self, dst_scheme: impl Into<String>) -> Self

Attach a destination scheme (used by cp, diff, and any future two-URL verb).

Source

pub fn with_error_kind(self, kind: &'static str) -> Self

Attach a stable error-kind classifier (from Error::kind()).

Source

pub fn with_event( event: &'static str, scheme: impl Into<String>, outcome: &'static str, ) -> Self

Build an event with an arbitrary 'static event label.

CLI-only verbs that do not belong on the library-side Verb enum (e.g., run.start / run.done from subprocess env injection) build events through this constructor. The &'static str bound prevents runtime-built label strings from smuggling value bytes into the audit envelope: callers must pass string literals known at compile time.

Source

pub fn cache(kind: CacheEvent, scheme: impl Into<String>) -> Self

Build a cache event for the given URL scheme. Single-phase — the outcome field carries the same classifier as event (e.g., event = "cache.hit", outcome = "hit") so consumers that filter on outcome see a stable label without parsing the event prefix.

Source

pub fn to_json_line(&self) -> String

Render to a single-line JSON string with no trailing newline.

Wire format (fields appear in this order):

{"event":"get.done","ts":1234567890,"src_scheme":"vault","outcome":"ok"}

dst_scheme and error_kind appear only when populated. The timestamp is UNIX seconds since the epoch; clock-skew anomalies fall back to 0 rather than panicking on the secret path.

Trait Implementations§

Source§

impl Clone for AuditEvent

Source§

fn clone(&self) -> AuditEvent

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 AuditEvent

Source§

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

Formats the value using the given formatter. Read more

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.