#[repr(C)]pub struct NetConn_NetCapabilities {
pub linkUpBandwidthKbps: u32,
pub linkDownBandwidthKbps: u32,
pub netCaps: [NetConn_NetCap; 32],
pub netCapsSize: i32,
pub bearerTypes: [NetConn_NetBearerType; 32],
pub bearerTypesSize: i32,
}Expand description
@brief Defines all network capabilities.
@since 11 @version 1.0
Fields§
§linkUpBandwidthKbps: u32Uplink bandwidth
linkDownBandwidthKbps: u32Downlink bandwidth
netCaps: [NetConn_NetCap; 32]Network capability list
netCapsSize: i32Actual size of the network capability list
bearerTypes: [NetConn_NetBearerType; 32]Bearer type list
bearerTypesSize: i32Actual size of the bearer type list
Trait Implementations§
Source§impl Clone for NetConn_NetCapabilities
impl Clone for NetConn_NetCapabilities
Source§fn clone(&self) -> NetConn_NetCapabilities
fn clone(&self) -> NetConn_NetCapabilities
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_NetCapabilities
impl Debug for NetConn_NetCapabilities
impl Copy for NetConn_NetCapabilities
Auto Trait Implementations§
impl Freeze for NetConn_NetCapabilities
impl RefUnwindSafe for NetConn_NetCapabilities
impl Send for NetConn_NetCapabilities
impl Sync for NetConn_NetCapabilities
impl Unpin for NetConn_NetCapabilities
impl UnsafeUnpin for NetConn_NetCapabilities
impl UnwindSafe for NetConn_NetCapabilities
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