pub trait AuditLogReason<'a>: Sealed {
    fn reason(self, reason: &'a str) -> Result<Self, ValidationError>
    where
        Self: Sized
; }

Required methods

Implementors