NETWORK

Enum NETWORK 

Source
#[repr(u32)]
pub enum NETWORK {
Show 24 variants PING = 587_202_561, INFO = 587_202_562, DIAGNOSE = 587_202_563, SET_IP = 587_202_564, SET_SUBNETMASK = 587_202_565, SET_GATEWAY = 587_202_566, SET_DNS_SERVER = 587_202_567, SET_DHCP = 587_202_568, MAKE_INFO_FILE = 587_202_569, CHECK_INTERNET_SPEED = 587_202_570, PARAM_IP = 591_396_865, PARAM_SUBNETMASK = 591_396_866, PARAM_GATEWAY = 591_396_867, PARAM_DNS_SERVER = 591_396_868, PARAM_DHCP = 591_396_869, PARAM_MAC_ADDRESS = 591_396_870, PARAM_E3DC_SERVER_REACHABLE = 591_396_871, PARAM_DNS_SERVER_REACHABLE = 591_396_872, PARAM_DNS_LOOKUP_WORKING = 591_396_873, PARAM_GATEWAY_REACHABLE = 591_396_874, PARAM_SYSTEM_IP_VALID = 591_396_875, PARAM_CABLE_CONNECTED = 591_396_876, PARAM_INTERNET_SPEED = 591_396_877, GENERAL_ERROR = 595_591_167,
}

Variants§

§

PING = 587_202_561

§

INFO = 587_202_562

§

DIAGNOSE = 587_202_563

§

SET_IP = 587_202_564

§

SET_SUBNETMASK = 587_202_565

§

SET_GATEWAY = 587_202_566

§

SET_DNS_SERVER = 587_202_567

§

SET_DHCP = 587_202_568

§

MAKE_INFO_FILE = 587_202_569

§

CHECK_INTERNET_SPEED = 587_202_570

§

PARAM_IP = 591_396_865

§

PARAM_SUBNETMASK = 591_396_866

§

PARAM_GATEWAY = 591_396_867

§

PARAM_DNS_SERVER = 591_396_868

§

PARAM_DHCP = 591_396_869

§

PARAM_MAC_ADDRESS = 591_396_870

§

PARAM_E3DC_SERVER_REACHABLE = 591_396_871

§

PARAM_DNS_SERVER_REACHABLE = 591_396_872

§

PARAM_DNS_LOOKUP_WORKING = 591_396_873

§

PARAM_GATEWAY_REACHABLE = 591_396_874

§

PARAM_SYSTEM_IP_VALID = 591_396_875

§

PARAM_CABLE_CONNECTED = 591_396_876

§

PARAM_INTERNET_SPEED = 591_396_877

§

GENERAL_ERROR = 595_591_167

Trait Implementations§

Source§

impl Debug for NETWORK

Source§

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

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

impl Display for NETWORK

Source§

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

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

impl From<u32> for NETWORK

Source§

fn from(orig: u32) -> Self

Converts to this type from the input type.
Source§

impl Into<u32> for NETWORK

Source§

fn into(self) -> u32

Converts this type into the (usually inferred) input type.
Source§

impl PartialEq for NETWORK

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for NETWORK

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> 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<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.