pub enum PkiStatus {
Granted = 0,
GrantedWithMods = 1,
Rejection = 2,
Waiting = 3,
RevocationWarning = 4,
RevocationNotification = 5,
}
Expand description
PKI status.
PKIStatus ::= INTEGER {
granted (0),
-- when the PKIStatus contains the value zero a TimeStampToken, as
requested, is present.
grantedWithMods (1),
-- when the PKIStatus contains the value one a TimeStampToken,
with modifications, is present.
rejection (2),
waiting (3),
revocationWarning (4),
-- this message contains a warning that a revocation is
-- imminent
revocationNotification (5)
-- notification that a revocation has occurred }
-- When the TimeStampToken is not present
-- failInfo indicates the reason why the
-- time-stamp request was rejected and
-- may be one of the following values.
Variants§
Granted = 0
GrantedWithMods = 1
Rejection = 2
Waiting = 3
RevocationWarning = 4
RevocationNotification = 5
Implementations§
Trait Implementations§
impl Copy for PkiStatus
impl Eq for PkiStatus
impl StructuralPartialEq for PkiStatus
Auto Trait Implementations§
impl Freeze for PkiStatus
impl RefUnwindSafe for PkiStatus
impl Send for PkiStatus
impl Sync for PkiStatus
impl Unpin for PkiStatus
impl UnwindSafe for PkiStatus
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