[][src]Enum psp::sys::NetParam

#[repr(u32)]pub enum NetParam {
    Name,
    Ssid,
    Secure,
    WepKey,
    IsStaticIp,
    Ip,
    NetMask,
    Route,
    ManualDns,
    PrimaryDns,
    SecondaryDns,
    ProxyUser,
    ProxyPass,
    UseProxy,
    ProxyServer,
    ProxyPort,
    Unknown1,
    Unknown2,
}

Variants

Name

c-style string

Ssid

c-style string

Secure

i32

WepKey

c-style string

IsStaticIp

i32

Ip

c-style string

NetMask

c-style string

Route

c-style string

ManualDns

i32

PrimaryDns

c-style string

SecondaryDns

c-style string

ProxyUser

c-style string

ProxyPass

c-style string

UseProxy

i32

ProxyServer

c-style string

ProxyPort

i32

Unknown1

i32

Unknown2

i32

Trait Implementations

impl Clone for NetParam[src]

impl Copy for NetParam[src]

impl Debug for NetParam[src]

Auto Trait Implementations

impl Send for NetParam

impl Sync for NetParam

impl Unpin for NetParam

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.