pub struct Model14 {
pub nam: Option<String>,
pub cap: Cap,
pub cfg: u16,
pub typ: Typ,
pub addr: String,
pub port: u16,
pub user: Option<String>,
pub pw: Option<String>,
}Expand description
Proxy Server
Include this block to allow for a proxy server
Fields§
§nam: Option<String>name
Interface name (8 chars)
cap: CapCapabilities
Bitmask value. Proxy configuration capabilities
cfg: u16Config
Enumerated value. Set proxy address type
typ: TypType
Enumerate value. Proxy server type
addr: StringAddress
IPv4 or IPv6 proxy hostname or dotted address (40 chars)
port: u16Port
Proxy port number
user: Option<String>Username
Proxy user name
pw: Option<String>Password
Proxy password
Implementations§
Source§impl Model14
impl Model14
pub const NAM: Point<Self, Option<String>>
pub const CAP: Point<Self, Cap>
pub const CFG: Point<Self, u16>
pub const TYP: Point<Self, Typ>
pub const ADDR: Point<Self, String>
pub const PORT: Point<Self, u16>
pub const USER: Point<Self, Option<String>>
pub const PW: Point<Self, Option<String>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Model14
impl RefUnwindSafe for Model14
impl Send for Model14
impl Sync for Model14
impl Unpin for Model14
impl UnwindSafe for Model14
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more