pub struct PidSelectReply {
pub lts_id: u8,
pub pid_selection: bool,
pub pids: Vec<PidSelectedEntry>,
}Expand description
PID_select_reply() (Table 5): Host → CICAM.
Fields§
§lts_id: u8LTS_id (8) — Local TS identifier.
pid_selection: boolPID_selection_flag (1) — false = whole TS sent (num_PID shall be 0);
true = PID selection applied and the loop lists the selected PIDs.
pids: Vec<PidSelectedEntry>The per-PID selection results (loop count = num_PID).
Trait Implementations§
Source§impl Clone for PidSelectReply
impl Clone for PidSelectReply
Source§fn clone(&self) -> PidSelectReply
fn clone(&self) -> PidSelectReply
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 PidSelectReply
impl Debug for PidSelectReply
impl Eq for PidSelectReply
Source§impl<'a> Parse<'a> for PidSelectReply
impl<'a> Parse<'a> for PidSelectReply
Source§impl PartialEq for PidSelectReply
impl PartialEq for PidSelectReply
Source§impl Serialize for PidSelectReply
impl Serialize for PidSelectReply
Source§impl Serialize for PidSelectReply
impl Serialize for PidSelectReply
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for PidSelectReply
Auto Trait Implementations§
impl Freeze for PidSelectReply
impl RefUnwindSafe for PidSelectReply
impl Send for PidSelectReply
impl Sync for PidSelectReply
impl Unpin for PidSelectReply
impl UnsafeUnpin for PidSelectReply
impl UnwindSafe for PidSelectReply
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