pub struct PidSelectedEntry {
pub pid_selected: bool,
pub pid: u16,
}Expand description
One entry of the PID_select_reply loop (Table 5): reserved(2) +
PID_selected_flag(1) + PID(13).
Fields§
§pid_selected: boolPID_selected_flag (1) — true if the PID could be selected successfully.
pid: u16PID (13) — PID value to which PID_selected_flag applies.
Trait Implementations§
Source§impl Clone for PidSelectedEntry
impl Clone for PidSelectedEntry
Source§fn clone(&self) -> PidSelectedEntry
fn clone(&self) -> PidSelectedEntry
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 moreimpl Copy for PidSelectedEntry
Source§impl Debug for PidSelectedEntry
impl Debug for PidSelectedEntry
impl Eq for PidSelectedEntry
Source§impl PartialEq for PidSelectedEntry
impl PartialEq for PidSelectedEntry
Source§impl Serialize for PidSelectedEntry
Available on crate feature serde only.
impl Serialize for PidSelectedEntry
Available on crate feature
serde only.impl StructuralPartialEq for PidSelectedEntry
Auto Trait Implementations§
impl Freeze for PidSelectedEntry
impl RefUnwindSafe for PidSelectedEntry
impl Send for PidSelectedEntry
impl Sync for PidSelectedEntry
impl Unpin for PidSelectedEntry
impl UnsafeUnpin for PidSelectedEntry
impl UnwindSafe for PidSelectedEntry
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