Struct cardano_legacy_address::Addr
source · pub struct Addr(Vec<u8>);
Expand description
A valid cardano Address that is displayed in base58
Tuple Fields§
§0: Vec<u8>
Implementations§
source§impl Addr
impl Addr
pub fn new(content: Vec<u8>) -> Self
pub fn deconstruct(&self) -> ExtendedAddr
sourcepub fn identical_with_xpub(&self, xpub: &XPub) -> AddressMatchXPub
pub fn identical_with_xpub(&self, xpub: &XPub) -> AddressMatchXPub
Check if the Addr can be reconstructed with a specific xpub
sourcepub fn identical_with_pubkey_raw(
&self,
pk: &[u8; 32],
chain_code: &[u8; 32]
) -> AddressMatchXPub
pub fn identical_with_pubkey_raw( &self, pk: &[u8; 32], chain_code: &[u8; 32] ) -> AddressMatchXPub
mostly helper of the previous function, so not to have to expose the xpub construction
sourcepub fn identical_with_xpub_raw(&self, xpub: &[u8]) -> AddressMatchXPub
pub fn identical_with_xpub_raw(&self, xpub: &[u8]) -> AddressMatchXPub
mostly helper of the previous function, so not to have to expose the xpub construction
Trait Implementations§
source§impl Deserialize for Addr
impl Deserialize for Addr
source§fn deserialize<R: BufRead>(reader: &mut Deserializer<R>) -> Result<Self>
fn deserialize<R: BufRead>(reader: &mut Deserializer<R>) -> Result<Self>
method to implement to deserialise an object from the given
Deserializer
.source§impl From<ExtendedAddr> for Addr
impl From<ExtendedAddr> for Addr
source§fn from(ea: ExtendedAddr) -> Self
fn from(ea: ExtendedAddr) -> Self
Converts to this type from the input type.
source§impl Ord for Addr
impl Ord for Addr
source§impl PartialEq<Addr> for Addr
impl PartialEq<Addr> for Addr
source§impl PartialOrd<Addr> for Addr
impl PartialOrd<Addr> for Addr
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 moreimpl Eq for Addr
impl StructuralEq for Addr
impl StructuralPartialEq for Addr
Auto Trait Implementations§
impl RefUnwindSafe for Addr
impl Send for Addr
impl Sync for Addr
impl Unpin for Addr
impl UnwindSafe for Addr
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