Struct sp_core::crypto::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.
sourcepub fn custom(prefix: u16) -> Ss58AddressFormat
pub fn custom(prefix: u16) -> Ss58AddressFormat
Custom constructor
sourcepub fn all() -> &'static [Ss58AddressFormatRegistry]
pub fn all() -> &'static [Ss58AddressFormatRegistry]
All known address formats.
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<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 for Ss58AddressFormat
impl PartialEq 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§fn try_from(
x: &'a str,
) -> Result<Ss58AddressFormat, <Ss58AddressFormat as TryFrom<&'a str>>::Error>
fn try_from( x: &'a str, ) -> Result<Ss58AddressFormat, <Ss58AddressFormat as TryFrom<&'a str>>::Error>
Performs the conversion.
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 StructuralPartialEq for Ss58AddressFormat
Auto Trait Implementations§
impl Freeze for Ss58AddressFormat
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.