pub struct EnvelopeResponse {
pub issuer: String,
pub index: String,
pub timestamp: String,
pub signature: String,
}Expand description
Response from ApiService::post_envelope.
Fields§
§issuer: StringStamper public key (hex).
index: StringStamp index (hex).
timestamp: StringStamp timestamp (decimal seconds, hex string).
signature: StringStamp signature (hex).
Trait Implementations§
Source§impl Clone for EnvelopeResponse
impl Clone for EnvelopeResponse
Source§fn clone(&self) -> EnvelopeResponse
fn clone(&self) -> EnvelopeResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 EnvelopeResponse
impl Debug for EnvelopeResponse
Source§impl<'de> Deserialize<'de> for EnvelopeResponse
impl<'de> Deserialize<'de> for EnvelopeResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EnvelopeResponse
impl PartialEq for EnvelopeResponse
impl Eq for EnvelopeResponse
impl StructuralPartialEq for EnvelopeResponse
Auto Trait Implementations§
impl Freeze for EnvelopeResponse
impl RefUnwindSafe for EnvelopeResponse
impl Send for EnvelopeResponse
impl Sync for EnvelopeResponse
impl Unpin for EnvelopeResponse
impl UnsafeUnpin for EnvelopeResponse
impl UnwindSafe for EnvelopeResponse
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