pub struct AuditCellosContext {
pub cellos_cell_id: String,
pub cell_token: Option<String>,
}Expand description
CellOS-specific audit context for resolve and revoke operations.
Enables tsafe audit --cell-id to return the full resolve/revoke chain for
a given cell without correlating two separate audit systems manually.
Fields§
§cellos_cell_id: StringCellOS cell identifier, e.g. doom-cell-001.
cell_token: Option<String>The 32-byte hex cell_token registered at supervisor spawn. Logged for correlation; safe to store (random nonce, not a secret value).
Trait Implementations§
Source§impl Clone for AuditCellosContext
impl Clone for AuditCellosContext
Source§fn clone(&self) -> AuditCellosContext
fn clone(&self) -> AuditCellosContext
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 AuditCellosContext
impl Debug for AuditCellosContext
Source§impl Default for AuditCellosContext
impl Default for AuditCellosContext
Source§fn default() -> AuditCellosContext
fn default() -> AuditCellosContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditCellosContext
impl<'de> Deserialize<'de> for AuditCellosContext
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 AuditCellosContext
impl PartialEq for AuditCellosContext
Source§fn eq(&self, other: &AuditCellosContext) -> bool
fn eq(&self, other: &AuditCellosContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuditCellosContext
impl Serialize for AuditCellosContext
impl Eq for AuditCellosContext
impl StructuralPartialEq for AuditCellosContext
Auto Trait Implementations§
impl Freeze for AuditCellosContext
impl RefUnwindSafe for AuditCellosContext
impl Send for AuditCellosContext
impl Sync for AuditCellosContext
impl Unpin for AuditCellosContext
impl UnsafeUnpin for AuditCellosContext
impl UnwindSafe for AuditCellosContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.