Skip to main content

Address

Struct Address 

Source
#[repr(transparent)]
pub struct Address(pub [u8; 20]);
Expand description

An Ethereum public address.

Tuple Fields§

§0: [u8; 20]

Implementations§

Source§

impl Address

Source

pub fn from_slice(slice: &[u8]) -> Address

Creates an address from a slice.

§Panics

This method panics if the length of the slice is not 20 bytes.

§Examples

Basic usage:

let buffer = (0..255).collect::<Vec<_>>();
assert_eq!(
    Address::from_slice(&buffer[0..20]),
    address!("0x000102030405060708090a0b0c0d0e0f10111213"),
);
Source

pub fn from_ref(array: &[u8; 20]) -> &Address

Creates a reference to an address from a reference to a 20-byte array.

§Examples

Basic usage:

let arrays = [[0; 20], [1; 20]];
for address in arrays.iter().map(Address::from_ref) {
    println!("{address}");
}
Source

pub fn from_mut(array: &mut [u8; 20]) -> &mut Address

Creates a mutable reference to an address from a mutable reference to a 20-byte array.

Source

pub fn from_str_checksum(s: &str) -> Result<Address, ParseAddressError>

Parses a checksummed Address from a string.

§Examples

Basic usage:

assert!(Address::from_str_checksum("0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE").is_ok());
assert!(Address::from_str_checksum("EeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE").is_ok());
assert!(Address::from_str_checksum("0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee").is_err());

Trait Implementations§

Source§

impl AsMut<[u8; 20]> for Address

Source§

fn as_mut(&mut self) -> &mut [u8; 20]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsMut<[u8]> for Address

Source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsRef<[u8; 20]> for Address

Source§

fn as_ref(&self) -> &[u8; 20]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<[u8]> for Address

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for Address

Source§

fn clone(&self) -> Address

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Address

Source§

impl Debug for Address

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Address

Source§

fn default() -> Address

Returns the “default value” for a type. Read more
Source§

impl Deref for Address

Source§

type Target = [u8; 20]

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<Address as Deref>::Target

Dereferences the value.
Source§

impl DerefMut for Address

Source§

fn deref_mut(&mut self) -> &mut <Address as Deref>::Target

Mutably dereferences the value.
Source§

impl<'de> Deserialize<'de> for Address

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Address, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Address

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Eq for Address

Source§

impl FromStr for Address

Source§

type Err = ParseAddressError

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Address, <Address as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Address

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl IntoIterator for Address

Source§

type Item = u8

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<u8, 20>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <Address as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a> IntoIterator for &'a Address

Source§

type Item = &'a u8

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, u8>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a Address as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl LowerHex for Address

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Ord for Address

Source§

fn cmp(&self, other: &Address) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Address

Source§

fn eq(&self, other: &Address) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<&[u8]> for Address

Source§

fn eq(&self, other: &&[u8]) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<&mut [u8]> for Address

Source§

fn eq(&self, other: &&mut [u8]) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<Vec<u8>> for Address

Available on crate feature std only.
Source§

fn eq(&self, other: &Vec<u8>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<[u8; 20]> for Address

Source§

fn eq(&self, other: &[u8; 20]) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialEq<[u8]> for Address

Source§

fn eq(&self, other: &[u8]) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for Address

Source§

fn partial_cmp(&self, other: &Address) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Address

Source§

fn serialize<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Address

Source§

impl<'a> TryFrom<&'a [u8]> for &'a Address

Source§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
Source§

fn try_from( value: &'a [u8], ) -> Result<&'a Address, <&'a Address as TryFrom<&'a [u8]>>::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a mut [u8]> for &'a mut Address

Source§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
Source§

fn try_from( value: &'a mut [u8], ) -> Result<&'a mut Address, <&'a mut Address as TryFrom<&'a mut [u8]>>::Error>

Performs the conversion.
Source§

impl TryFrom<&[u8]> for Address

Source§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
Source§

fn try_from(value: &[u8]) -> Result<Address, <Address as TryFrom<&[u8]>>::Error>

Performs the conversion.
Source§

impl TryFrom<&mut [u8]> for Address

Source§

type Error = TryFromSliceError

The type returned in the event of a conversion error.
Source§

fn try_from( value: &mut [u8], ) -> Result<Address, <Address as TryFrom<&mut [u8]>>::Error>

Performs the conversion.
Source§

impl TryFrom<Vec<u8>> for Address

Available on crate feature std only.
Source§

type Error = Vec<u8>

The type returned in the event of a conversion error.
Source§

fn try_from( value: Vec<u8>, ) -> Result<Address, <Address as TryFrom<Vec<u8>>>::Error>

Performs the conversion.
Source§

impl UpperHex for Address

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.