Struct cryptographic_message_syntax::asn1::rfc3161::TimeStampReq
source · [−]pub struct TimeStampReq {
pub version: Integer,
pub message_imprint: MessageImprint,
pub req_policy: Option<TsaPolicyId>,
pub nonce: Option<Integer>,
pub cert_req: Option<bool>,
pub extensions: Option<Extensions>,
}Expand description
A time-stamp request.
TimeStampReq ::= SEQUENCE {
version INTEGER { v1(1) },
messageImprint MessageImprint,
--a hash algorithm OID and the hash value of the data to be
--time-stamped
reqPolicy TSAPolicyId OPTIONAL,
nonce INTEGER OPTIONAL,
certReq BOOLEAN DEFAULT FALSE,
extensions [0] IMPLICIT Extensions OPTIONAL }Fields
version: Integermessage_imprint: MessageImprintreq_policy: Option<TsaPolicyId>nonce: Option<Integer>cert_req: Option<bool>extensions: Option<Extensions>Implementations
sourceimpl TimeStampReq
impl TimeStampReq
pub fn take_from<S: Source>(
cons: &mut Constructed<'_, S>
) -> Result<Self, DecodeError<S::Error>>
pub fn encode_ref(&self) -> impl Values + '_
Trait Implementations
sourceimpl Clone for TimeStampReq
impl Clone for TimeStampReq
sourcefn clone(&self) -> TimeStampReq
fn clone(&self) -> TimeStampReq
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TimeStampReq
impl Debug for TimeStampReq
sourceimpl PartialEq<TimeStampReq> for TimeStampReq
impl PartialEq<TimeStampReq> for TimeStampReq
sourcefn eq(&self, other: &TimeStampReq) -> bool
fn eq(&self, other: &TimeStampReq) -> bool
impl Eq for TimeStampReq
impl StructuralEq for TimeStampReq
impl StructuralPartialEq for TimeStampReq
Auto Trait Implementations
impl RefUnwindSafe for TimeStampReq
impl Send for TimeStampReq
impl Sync for TimeStampReq
impl Unpin for TimeStampReq
impl UnwindSafe for TimeStampReq
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.