#[repr(C)]pub struct NetConn_ConnectionProperties {
pub ifaceName: [c_char; 256],
pub domain: [c_char; 256],
pub tcpBufferSizes: [c_char; 256],
pub mtu: u16,
pub netAddrList: [NetConn_NetAddr; 32],
pub netAddrListSize: i32,
pub dnsList: [NetConn_NetAddr; 32],
pub dnsListSize: i32,
pub routeList: [NetConn_Route; 64],
pub routeListSize: i32,
pub httpProxy: NetConn_HttpProxy,
}Expand description
@brief Defines the network connection properties.
@since 11 @version 1.0
Fields§
§ifaceName: [c_char; 256]Network interface name
domain: [c_char; 256]Domain name of the network connection
tcpBufferSizes: [c_char; 256]TCP buffer size
mtu: u16MTU
netAddrList: [NetConn_NetAddr; 32]Address list
netAddrListSize: i32Actual size of the address list
dnsList: [NetConn_NetAddr; 32]DNS list
dnsListSize: i32Actual size of the DNS list
routeList: [NetConn_Route; 64]Route list
routeListSize: i32Actual size of the route list
httpProxy: NetConn_HttpProxyHTTP proxy information
Trait Implementations§
Source§impl Clone for NetConn_ConnectionProperties
impl Clone for NetConn_ConnectionProperties
Source§fn clone(&self) -> NetConn_ConnectionProperties
fn clone(&self) -> NetConn_ConnectionProperties
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NetConn_ConnectionProperties
impl Debug for NetConn_ConnectionProperties
impl Copy for NetConn_ConnectionProperties
Auto Trait Implementations§
impl Freeze for NetConn_ConnectionProperties
impl RefUnwindSafe for NetConn_ConnectionProperties
impl Send for NetConn_ConnectionProperties
impl Sync for NetConn_ConnectionProperties
impl Unpin for NetConn_ConnectionProperties
impl UnsafeUnpin for NetConn_ConnectionProperties
impl UnwindSafe for NetConn_ConnectionProperties
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