pub struct CeremonyGuardDeferral { /* private fields */ }Implementations§
Source§impl CeremonyGuardDeferral
impl CeremonyGuardDeferral
pub fn record( guard_name: GuardName, deferred_by: RoleId, deferred_by_kind: AuditActorKind, content: CeremonyGuardDeferralContent, deferred_at: OffsetDateTime, ) -> Self
pub fn guard_name(&self) -> &GuardName
Sourcepub fn deferred_by(&self) -> &RoleId
pub fn deferred_by(&self) -> &RoleId
The seat that deferred. A deferral said what was decided, why, and what would make it worth revisiting, and left out who — which is the one of the four nobody can reconstruct later.
Sourcepub fn deferred_by_kind(&self) -> AuditActorKind
pub fn deferred_by_kind(&self) -> AuditActorKind
What kind of party the caller says filled the seat. Declared, never deduced.
pub fn content(&self) -> &CeremonyGuardDeferralContent
pub fn deferred_at(&self) -> OffsetDateTime
Trait Implementations§
Source§impl Clone for CeremonyGuardDeferral
impl Clone for CeremonyGuardDeferral
Source§fn clone(&self) -> CeremonyGuardDeferral
fn clone(&self) -> CeremonyGuardDeferral
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 CeremonyGuardDeferral
impl Debug for CeremonyGuardDeferral
Source§impl<'de> Deserialize<'de> for CeremonyGuardDeferral
impl<'de> Deserialize<'de> for CeremonyGuardDeferral
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
impl Eq for CeremonyGuardDeferral
Source§impl PartialEq for CeremonyGuardDeferral
impl PartialEq for CeremonyGuardDeferral
Source§impl Serialize for CeremonyGuardDeferral
impl Serialize for CeremonyGuardDeferral
impl StructuralPartialEq for CeremonyGuardDeferral
Auto Trait Implementations§
impl Freeze for CeremonyGuardDeferral
impl RefUnwindSafe for CeremonyGuardDeferral
impl Send for CeremonyGuardDeferral
impl Sync for CeremonyGuardDeferral
impl Unpin for CeremonyGuardDeferral
impl UnsafeUnpin for CeremonyGuardDeferral
impl UnwindSafe for CeremonyGuardDeferral
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