[][src]Enum wagyu_monero::format::MoneroFormat

pub enum MoneroFormat {
    Standard,
    Integrated([u8; 8]),
    Subaddress(u32u32),
}

Represents the format of a Monero address

Variants

Standard

Standard address

Integrated([u8; 8])

Address with payment id (8 bytes)

Subaddress(u32u32)

Subaddress

Methods

impl MoneroFormat[src]

pub fn to_address_prefix<N: MoneroNetwork>(&self) -> u8[src]

Returns the address prefix of the given network.

pub fn from_address(address: &[u8]) -> Result<Self, AddressError>[src]

Returns the format of the given address.

Trait Implementations

impl Clone for MoneroFormat[src]

impl Copy for MoneroFormat[src]

impl Debug for MoneroFormat[src]

impl Display for MoneroFormat[src]

impl Eq for MoneroFormat[src]

impl Format for MoneroFormat[src]

impl Hash for MoneroFormat[src]

impl Ord for MoneroFormat[src]

impl PartialEq<MoneroFormat> for MoneroFormat[src]

impl PartialOrd<MoneroFormat> for MoneroFormat[src]

impl Serialize for MoneroFormat[src]

impl StructuralEq for MoneroFormat[src]

impl StructuralPartialEq for MoneroFormat[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,