[][src]Struct tinkerforge::master_brick::Wifi2Status

pub struct Wifi2Status {
    pub client_enabled: bool,
    pub client_status: u8,
    pub client_ip: [u8; 4],
    pub client_subnet_mask: [u8; 4],
    pub client_gateway: [u8; 4],
    pub client_mac_address: [u8; 6],
    pub client_rx_count: u32,
    pub client_tx_count: u32,
    pub client_rssi: i8,
    pub ap_enabled: bool,
    pub ap_ip: [u8; 4],
    pub ap_subnet_mask: [u8; 4],
    pub ap_gateway: [u8; 4],
    pub ap_mac_address: [u8; 6],
    pub ap_rx_count: u32,
    pub ap_tx_count: u32,
    pub ap_connected_count: u8,
}

Fields

client_enabled: boolclient_status: u8client_ip: [u8; 4]client_subnet_mask: [u8; 4]client_gateway: [u8; 4]client_mac_address: [u8; 6]client_rx_count: u32client_tx_count: u32client_rssi: i8ap_enabled: boolap_ip: [u8; 4]ap_subnet_mask: [u8; 4]ap_gateway: [u8; 4]ap_mac_address: [u8; 6]ap_rx_count: u32ap_tx_count: u32ap_connected_count: u8

Trait Implementations

impl FromByteSlice for Wifi2Status[src]

impl PartialEq<Wifi2Status> for Wifi2Status[src]

impl Default for Wifi2Status[src]

impl Clone for Wifi2Status[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Eq for Wifi2Status[src]

impl Copy for Wifi2Status[src]

impl Debug for Wifi2Status[src]

impl Hash for Wifi2Status[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self