pub struct SignResponse {
pub signature: String,
pub signature_chain: Vec<String>,
pub public_key: String,
}Expand description
Response from a Sign request
Fields§
§signature: StringThe signature in hexadecimal format
signature_chain: Vec<String>The chain of signatures in hexadecimal format
public_key: StringThe public key in hexadecimal format
Implementations§
Source§impl SignResponse
impl SignResponse
Sourcepub fn decode_signature(&self) -> Result<Vec<u8>, FromHexError>
pub fn decode_signature(&self) -> Result<Vec<u8>, FromHexError>
Decodes the signature from hex to bytes
Sourcepub fn decode_public_key(&self) -> Result<Vec<u8>, FromHexError>
pub fn decode_public_key(&self) -> Result<Vec<u8>, FromHexError>
Decodes the public key from hex to bytes
Sourcepub fn decode_signature_chain(&self) -> Result<Vec<Vec<u8>>, FromHexError>
pub fn decode_signature_chain(&self) -> Result<Vec<Vec<u8>>, FromHexError>
Decodes the signature chain from hex to bytes
Trait Implementations§
Source§impl Debug for SignResponse
impl Debug for SignResponse
Source§impl<'de> Deserialize<'de> for SignResponse
impl<'de> Deserialize<'de> for SignResponse
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
Auto Trait Implementations§
impl Freeze for SignResponse
impl RefUnwindSafe for SignResponse
impl Send for SignResponse
impl Sync for SignResponse
impl Unpin for SignResponse
impl UnsafeUnpin for SignResponse
impl UnwindSafe for SignResponse
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