#[repr(C)]pub struct AccessPoint {
pub use_default_address: Boolean,
pub station_address: Ipv4Address,
pub subnet_mask: Ipv4Address,
pub station_port: u16,
pub remote_address: Ipv4Address,
pub remote_port: u16,
pub active_flag: Boolean,
}
Fields§
§use_default_address: Boolean
§station_address: Ipv4Address
§subnet_mask: Ipv4Address
§station_port: u16
§remote_address: Ipv4Address
§remote_port: u16
§active_flag: Boolean
Trait Implementations§
Source§impl Clone for AccessPoint
impl Clone for AccessPoint
Source§fn clone(&self) -> AccessPoint
fn clone(&self) -> AccessPoint
Returns a duplicate of the value. Read more
1.0.0 · 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 AccessPoint
impl Debug for AccessPoint
Source§impl Default for AccessPoint
impl Default for AccessPoint
Source§fn default() -> AccessPoint
fn default() -> AccessPoint
Returns the “default value” for a type. Read more
impl Copy for AccessPoint
Auto Trait Implementations§
impl Freeze for AccessPoint
impl RefUnwindSafe for AccessPoint
impl Send for AccessPoint
impl Sync for AccessPoint
impl Unpin for AccessPoint
impl UnwindSafe for AccessPoint
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