pub struct SaplingAddress {
pub network: Network,
pub raw: [u8; 43],
}Expand description
Decoded Sapling payment address. Always 43 bytes raw, regardless of network.
Fields§
§network: Network§raw: [u8; 43]11-byte diversifier ‖ 32-byte pk_d.
Trait Implementations§
Source§impl Clone for SaplingAddress
impl Clone for SaplingAddress
Source§fn clone(&self) -> SaplingAddress
fn clone(&self) -> SaplingAddress
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 SaplingAddress
impl Debug for SaplingAddress
Source§impl PartialEq for SaplingAddress
impl PartialEq for SaplingAddress
Source§fn eq(&self, other: &SaplingAddress) -> bool
fn eq(&self, other: &SaplingAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SaplingAddress
impl StructuralPartialEq for SaplingAddress
Auto Trait Implementations§
impl Freeze for SaplingAddress
impl RefUnwindSafe for SaplingAddress
impl Send for SaplingAddress
impl Sync for SaplingAddress
impl Unpin for SaplingAddress
impl UnsafeUnpin for SaplingAddress
impl UnwindSafe for SaplingAddress
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