Struct ss58_registry::Ss58AddressFormat
source · pub struct Ss58AddressFormat { /* private fields */ }
Expand description
A custom address format. See also Ss58AddressFormatRegistry
Implementations§
source§impl Ss58AddressFormat
impl Ss58AddressFormat
An enumeration of unique networks. Some are reserved.
Trait Implementations§
source§impl Clone for Ss58AddressFormat
impl Clone for Ss58AddressFormat
source§fn clone(&self) -> Ss58AddressFormat
fn clone(&self) -> Ss58AddressFormat
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 Ss58AddressFormat
impl Debug for Ss58AddressFormat
source§impl Display for Ss58AddressFormat
impl Display for Ss58AddressFormat
Display the name of the address format (not the description).
source§impl From<Ss58AddressFormat> for String
impl From<Ss58AddressFormat> for String
source§fn from(x: Ss58AddressFormat) -> String
fn from(x: Ss58AddressFormat) -> String
Converts to this type from the input type.
source§impl From<Ss58AddressFormat> for u16
impl From<Ss58AddressFormat> for u16
source§fn from(x: Ss58AddressFormat) -> u16
fn from(x: Ss58AddressFormat) -> u16
Converts to this type from the input type.
source§impl From<Ss58AddressFormatRegistry> for Ss58AddressFormat
impl From<Ss58AddressFormatRegistry> for Ss58AddressFormat
source§fn from(x: Ss58AddressFormatRegistry) -> Ss58AddressFormat
fn from(x: Ss58AddressFormatRegistry) -> Ss58AddressFormat
Converts to this type from the input type.
source§impl From<u16> for Ss58AddressFormat
impl From<u16> for Ss58AddressFormat
source§fn from(prefix: u16) -> Ss58AddressFormat
fn from(prefix: u16) -> Ss58AddressFormat
Converts to this type from the input type.
source§impl From<u8> for Ss58AddressFormat
impl From<u8> for Ss58AddressFormat
source§fn from(x: u8) -> Ss58AddressFormat
fn from(x: u8) -> Ss58AddressFormat
Converts to this type from the input type.
source§impl PartialEq<Ss58AddressFormat> for Ss58AddressFormat
impl PartialEq<Ss58AddressFormat> for Ss58AddressFormat
source§fn eq(&self, other: &Ss58AddressFormat) -> bool
fn eq(&self, other: &Ss58AddressFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFrom<&'a str> for Ss58AddressFormat
impl<'a> TryFrom<&'a str> for Ss58AddressFormat
§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
source§impl TryFrom<Ss58AddressFormat> for Ss58AddressFormatRegistry
impl TryFrom<Ss58AddressFormat> for Ss58AddressFormatRegistry
§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
source§fn try_from(
x: Ss58AddressFormat
) -> Result<Ss58AddressFormatRegistry, ParseError>
fn try_from( x: Ss58AddressFormat ) -> Result<Ss58AddressFormatRegistry, ParseError>
Performs the conversion.
impl Copy for Ss58AddressFormat
impl Eq for Ss58AddressFormat
impl StructuralEq for Ss58AddressFormat
impl StructuralPartialEq for Ss58AddressFormat
Auto Trait Implementations§
impl RefUnwindSafe for Ss58AddressFormat
impl Send for Ss58AddressFormat
impl Sync for Ss58AddressFormat
impl Unpin for Ss58AddressFormat
impl UnwindSafe for Ss58AddressFormat
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