pub struct SignWithSchnorrResponse {
pub signature: Vec<u8>,
}
๐Deprecated since 0.18.0: The
api::management_canister::schnorr
module is deprecated. Please use the management_canister
module at the crate root.Expand description
Response Type of sign_with_schnorr.
Fieldsยง
ยงsignature: Vec<u8>
๐Deprecated since 0.18.0: The
api::management_canister::schnorr
module is deprecated. Please use the management_canister
module at the crate root.The encoding of the signature depends on the key IDโs algorithm.
Trait Implementationsยง
Sourceยงimpl Clone for SignWithSchnorrResponse
impl Clone for SignWithSchnorrResponse
Sourceยงfn clone(&self) -> SignWithSchnorrResponse
fn clone(&self) -> SignWithSchnorrResponse
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSourceยงimpl Debug for SignWithSchnorrResponse
impl Debug for SignWithSchnorrResponse
Sourceยงimpl Default for SignWithSchnorrResponse
impl Default for SignWithSchnorrResponse
Sourceยงfn default() -> SignWithSchnorrResponse
fn default() -> SignWithSchnorrResponse
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl<'de> Deserialize<'de> for SignWithSchnorrResponse
impl<'de> Deserialize<'de> for SignWithSchnorrResponse
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 Hash for SignWithSchnorrResponse
impl Hash for SignWithSchnorrResponse
Sourceยงimpl Ord for SignWithSchnorrResponse
impl Ord for SignWithSchnorrResponse
Sourceยงfn cmp(&self, other: &SignWithSchnorrResponse) -> Ordering
fn cmp(&self, other: &SignWithSchnorrResponse) -> Ordering
1.21.0 ยท Sourceยงfn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Sourceยงimpl PartialEq for SignWithSchnorrResponse
impl PartialEq for SignWithSchnorrResponse
Sourceยงfn eq(&self, other: &SignWithSchnorrResponse) -> bool
fn eq(&self, other: &SignWithSchnorrResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Sourceยงimpl PartialOrd for SignWithSchnorrResponse
impl PartialOrd for SignWithSchnorrResponse
Sourceยงimpl Serialize for SignWithSchnorrResponse
impl Serialize for SignWithSchnorrResponse
impl Eq for SignWithSchnorrResponse
impl StructuralPartialEq for SignWithSchnorrResponse
Auto Trait Implementationsยง
impl Freeze for SignWithSchnorrResponse
impl RefUnwindSafe for SignWithSchnorrResponse
impl Send for SignWithSchnorrResponse
impl Sync for SignWithSchnorrResponse
impl Unpin for SignWithSchnorrResponse
impl UnwindSafe for SignWithSchnorrResponse
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