pub struct AllowlistHit {
pub resource_type: String,
pub resource_id: String,
pub operation: String,
pub timestamp_ns: u128,
}Expand description
Allow-list access record
Fields§
§resource_type: StringType of resource accessed
resource_id: StringResource identifier (path, URL, etc.)
operation: StringAccess operation (read, write, execute, etc.)
timestamp_ns: u128Timestamp of access
Trait Implementations§
Source§impl Clone for AllowlistHit
impl Clone for AllowlistHit
Source§fn clone(&self) -> AllowlistHit
fn clone(&self) -> AllowlistHit
Returns a duplicate of the value. Read more
1.0.0 · 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 AllowlistHit
impl Debug for AllowlistHit
Source§impl<'de> Deserialize<'de> for AllowlistHit
impl<'de> Deserialize<'de> for AllowlistHit
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 AllowlistHit
impl PartialEq for AllowlistHit
Source§impl Serialize for AllowlistHit
impl Serialize for AllowlistHit
impl Eq for AllowlistHit
impl StructuralPartialEq for AllowlistHit
Auto Trait Implementations§
impl Freeze for AllowlistHit
impl RefUnwindSafe for AllowlistHit
impl Send for AllowlistHit
impl Sync for AllowlistHit
impl Unpin for AllowlistHit
impl UnsafeUnpin for AllowlistHit
impl UnwindSafe for AllowlistHit
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