pub struct HalLinkStatus {
pub status: Status,
pub clients: [ClientStatus; 8],
}
Expand description
Parameters returned by the HAL Get Link Status command.
Fields§
§status: Status
Did the command fail, and if so, how?
clients: [ClientStatus; 8]
State of the client connections.
Trait Implementations§
Source§impl Clone for HalLinkStatus
impl Clone for HalLinkStatus
Source§fn clone(&self) -> HalLinkStatus
fn clone(&self) -> HalLinkStatus
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 moreAuto Trait Implementations§
impl Freeze for HalLinkStatus
impl RefUnwindSafe for HalLinkStatus
impl Send for HalLinkStatus
impl Sync for HalLinkStatus
impl Unpin for HalLinkStatus
impl UnwindSafe for HalLinkStatus
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