pub struct DecodedAddress {
pub bech32: String,
pub hex: String,
pub network: Network,
pub payment_cred: PaymentCredential,
pub staking_cred: StakingCredential,
}
Fields§
§bech32: String
§hex: String
§network: Network
§payment_cred: PaymentCredential
§staking_cred: StakingCredential
Trait Implementations§
Source§impl Clone for DecodedAddress
impl Clone for DecodedAddress
Source§fn clone(&self) -> DecodedAddress
fn clone(&self) -> DecodedAddress
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 DecodedAddress
impl Debug for DecodedAddress
Source§impl<'de> Deserialize<'de> for DecodedAddress
impl<'de> Deserialize<'de> for DecodedAddress
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
Auto Trait Implementations§
impl Freeze for DecodedAddress
impl RefUnwindSafe for DecodedAddress
impl Send for DecodedAddress
impl Sync for DecodedAddress
impl Unpin for DecodedAddress
impl UnwindSafe for DecodedAddress
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