pub struct AccessLogEntry {
pub access_id: Uuid,
pub actor: Identity,
pub resource: AccessedResource,
pub purpose: PurposeOfUse,
pub timestamp_utc_us: i64,
pub correlation_id: Option<Uuid>,
}Expand description
Single record produced for every successful log_access call.
Sinks serialize this into their target medium; tests inspect it directly.
Fields§
§access_id: Uuid§actor: Identity§resource: AccessedResource§purpose: PurposeOfUse§timestamp_utc_us: i64§correlation_id: Option<Uuid>Implementations§
Source§impl AccessLogEntry
impl AccessLogEntry
Sourcepub fn new(
actor: Identity,
resource: AccessedResource,
purpose: PurposeOfUse,
correlation_id: Option<Uuid>,
) -> Result<Self, AccessLogError>
pub fn new( actor: Identity, resource: AccessedResource, purpose: PurposeOfUse, correlation_id: Option<Uuid>, ) -> Result<Self, AccessLogError>
Construct an entry from caller inputs. Validates and stamps timestamp.
Trait Implementations§
Source§impl Clone for AccessLogEntry
impl Clone for AccessLogEntry
Source§fn clone(&self) -> AccessLogEntry
fn clone(&self) -> AccessLogEntry
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 AccessLogEntry
impl Debug for AccessLogEntry
Source§impl<'de> Deserialize<'de> for AccessLogEntry
impl<'de> Deserialize<'de> for AccessLogEntry
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 AccessLogEntry
impl PartialEq for AccessLogEntry
Source§fn eq(&self, other: &AccessLogEntry) -> bool
fn eq(&self, other: &AccessLogEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccessLogEntry
impl Serialize for AccessLogEntry
impl StructuralPartialEq for AccessLogEntry
Auto Trait Implementations§
impl Freeze for AccessLogEntry
impl RefUnwindSafe for AccessLogEntry
impl Send for AccessLogEntry
impl Sync for AccessLogEntry
impl Unpin for AccessLogEntry
impl UnsafeUnpin for AccessLogEntry
impl UnwindSafe for AccessLogEntry
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