esp_idf_sys

Type Alias ip4_addr_t

Source
pub type ip4_addr_t = ip4_addr;
Expand description

ip4_addr_t uses a struct for convenience only, so that the same defines can operate both on ip4_addr_t as well as on ip4_addr_p_t.

Aliased Type§

struct ip4_addr_t {
    pub addr: u32,
}

Fields§

§addr: u32

Trait Implementations

Source§

impl Clone for ip4_addr

Source§

fn clone(&self) -> ip4_addr

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ip4_addr

Source§

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

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

impl Default for ip4_addr

Source§

fn default() -> ip4_addr

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

impl Copy for ip4_addr