Struct cryptographic_message_syntax::asn1::rfc3161::TimeStampResp
source · [−]pub struct TimeStampResp {
pub status: PkiStatusInfo,
pub time_stamp_token: Option<TimeStampToken>,
}Expand description
Time stamp response.
TimeStampResp ::= SEQUENCE {
status PKIStatusInfo,
timeStampToken TimeStampToken OPTIONAL }Fields
status: PkiStatusInfotime_stamp_token: Option<TimeStampToken>Implementations
sourceimpl TimeStampResp
impl TimeStampResp
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 TimeStampResp
impl Clone for TimeStampResp
sourcefn clone(&self) -> TimeStampResp
fn clone(&self) -> TimeStampResp
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 TimeStampResp
impl Debug for TimeStampResp
sourceimpl PartialEq<TimeStampResp> for TimeStampResp
impl PartialEq<TimeStampResp> for TimeStampResp
sourcefn eq(&self, other: &TimeStampResp) -> bool
fn eq(&self, other: &TimeStampResp) -> bool
impl Eq for TimeStampResp
impl StructuralEq for TimeStampResp
impl StructuralPartialEq for TimeStampResp
Auto Trait Implementations
impl RefUnwindSafe for TimeStampResp
impl Send for TimeStampResp
impl Sync for TimeStampResp
impl Unpin for TimeStampResp
impl UnwindSafe for TimeStampResp
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.