pub struct SignBytesResponse {
pub signature: Vec<u8>,
pub error: Option<RemoteSignerError>,
}Expand description
Response to a SignBytesRequest, containing a signature if successful or an error otherwise.
Fields§
§signature: Vec<u8>Signature
error: Option<RemoteSignerError>Response error
Trait Implementations§
Source§impl Clone for SignBytesResponse
impl Clone for SignBytesResponse
Source§fn clone(&self) -> SignBytesResponse
fn clone(&self) -> SignBytesResponse
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 SignBytesResponse
impl Debug for SignBytesResponse
Source§impl From<SignBytesResponse> for SignBytesResponse
impl From<SignBytesResponse> for SignBytesResponse
Source§fn from(resp: SignBytesResponse) -> Self
fn from(resp: SignBytesResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SignBytesResponse
impl PartialEq for SignBytesResponse
Source§impl Protobuf<SignBytesResponse> for SignBytesResponse
impl Protobuf<SignBytesResponse> for SignBytesResponse
Source§fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode into a buffer in Protobuf format. Read more
Source§fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
fn encode_length_delimited<B>(self, buf: &mut B) -> Result<(), Error>where
B: BufMut,
Encode with a length-delimiter to a buffer in Protobuf format. Read more
Source§fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode an instance from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
fn decode_length_delimited<B>(buf: B) -> Result<Self, Error>where
B: Buf,
Constructor that attempts to decode a length-delimited instance from
the buffer. Read more
Source§fn encoded_len(self) -> usize
fn encoded_len(self) -> usize
Returns the encoded length of the message without a length delimiter. Read more
Source§fn decode_vec(v: &[u8]) -> Result<Self, Error>
fn decode_vec(v: &[u8]) -> Result<Self, Error>
Constructor that attempts to decode a Protobuf-encoded instance from a
Vec<u8> (or equivalent).Source§impl TryFrom<SignBytesResponse> for SignBytesResponse
impl TryFrom<SignBytesResponse> for SignBytesResponse
impl Eq for SignBytesResponse
impl StructuralPartialEq for SignBytesResponse
Auto Trait Implementations§
impl Freeze for SignBytesResponse
impl RefUnwindSafe for SignBytesResponse
impl Send for SignBytesResponse
impl Sync for SignBytesResponse
impl Unpin for SignBytesResponse
impl UnwindSafe for SignBytesResponse
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