pub struct TimestampRequest {
pub digest_algorithm: DigestAlgorithm,
pub message_imprint: Vec<u8>,
}Expand description
Request sent to a timestamp authority abstraction.
Fields§
§digest_algorithm: DigestAlgorithm§message_imprint: Vec<u8>Trait Implementations§
Source§impl Clone for TimestampRequest
impl Clone for TimestampRequest
Source§fn clone(&self) -> TimestampRequest
fn clone(&self) -> TimestampRequest
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 TimestampRequest
impl Debug for TimestampRequest
impl Eq for TimestampRequest
Source§impl PartialEq for TimestampRequest
impl PartialEq for TimestampRequest
Source§fn eq(&self, other: &TimestampRequest) -> bool
fn eq(&self, other: &TimestampRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimestampRequest
Auto Trait Implementations§
impl Freeze for TimestampRequest
impl RefUnwindSafe for TimestampRequest
impl Send for TimestampRequest
impl Sync for TimestampRequest
impl Unpin for TimestampRequest
impl UnsafeUnpin for TimestampRequest
impl UnwindSafe for TimestampRequest
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