pub struct ExtractSignatureResponse {
pub signatures: HashMap<String, ExtractedSignature>,
}Expand description
Response from signature extraction.
Fields§
§signatures: HashMap<String, ExtractedSignature>Extracted signatures indexed by message ID.
Trait Implementations§
Source§impl Clone for ExtractSignatureResponse
impl Clone for ExtractSignatureResponse
Source§fn clone(&self) -> ExtractSignatureResponse
fn clone(&self) -> ExtractSignatureResponse
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 ExtractSignatureResponse
impl Debug for ExtractSignatureResponse
Source§impl<'de> Deserialize<'de> for ExtractSignatureResponse
impl<'de> Deserialize<'de> for ExtractSignatureResponse
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 ExtractSignatureResponse
impl PartialEq for ExtractSignatureResponse
Source§fn eq(&self, other: &ExtractSignatureResponse) -> bool
fn eq(&self, other: &ExtractSignatureResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExtractSignatureResponse
impl Serialize for ExtractSignatureResponse
impl StructuralPartialEq for ExtractSignatureResponse
Auto Trait Implementations§
impl Freeze for ExtractSignatureResponse
impl RefUnwindSafe for ExtractSignatureResponse
impl Send for ExtractSignatureResponse
impl Sync for ExtractSignatureResponse
impl Unpin for ExtractSignatureResponse
impl UnsafeUnpin for ExtractSignatureResponse
impl UnwindSafe for ExtractSignatureResponse
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