Struct nostr_sdk::nips::nip46::DelegationResult
source · pub struct DelegationResult {
pub from: XOnlyPublicKey,
pub to: XOnlyPublicKey,
pub cond: Conditions,
pub sig: Signature,
}
Expand description
Delegation Response Result
Fields§
§from: XOnlyPublicKey
Pubkey of Delegator
to: XOnlyPublicKey
Pubkey of Delegatee
cond: Conditions
Conditions of delegation
sig: Signature
Signature of Delegation Token
Trait Implementations§
source§impl Clone for DelegationResult
impl Clone for DelegationResult
source§fn clone(&self) -> DelegationResult
fn clone(&self) -> DelegationResult
Returns a copy 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 DelegationResult
impl Debug for DelegationResult
source§impl<'de> Deserialize<'de> for DelegationResult
impl<'de> Deserialize<'de> for DelegationResult
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<DelegationResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<DelegationResult, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for DelegationResult
impl Hash for DelegationResult
source§impl Ord for DelegationResult
impl Ord for DelegationResult
source§fn cmp(&self, other: &DelegationResult) -> Ordering
fn cmp(&self, other: &DelegationResult) -> 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<DelegationResult> for DelegationResult
impl PartialEq<DelegationResult> for DelegationResult
source§fn eq(&self, other: &DelegationResult) -> bool
fn eq(&self, other: &DelegationResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DelegationResult> for DelegationResult
impl PartialOrd<DelegationResult> for DelegationResult
source§fn partial_cmp(&self, other: &DelegationResult) -> Option<Ordering>
fn partial_cmp(&self, other: &DelegationResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for DelegationResult
impl Serialize for DelegationResult
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for DelegationResult
impl StructuralEq for DelegationResult
impl StructuralPartialEq for DelegationResult
Auto Trait Implementations§
impl RefUnwindSafe for DelegationResult
impl Send for DelegationResult
impl Sync for DelegationResult
impl Unpin for DelegationResult
impl UnwindSafe for DelegationResult
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.