pub struct PidSelectReq {
pub lts_id: u8,
pub pids: Vec<PidSelectRequest>,
}Expand description
PID_select_req() (Table 4): CICAM → Host. PIDs are listed in descending
priority order.
Fields§
§lts_id: u8LTS_id (8) — Local TS identifier.
pids: Vec<PidSelectRequest>The requested PIDs (loop count = num_PID).
Trait Implementations§
Source§impl Clone for PidSelectReq
impl Clone for PidSelectReq
Source§fn clone(&self) -> PidSelectReq
fn clone(&self) -> PidSelectReq
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 PidSelectReq
impl Debug for PidSelectReq
impl Eq for PidSelectReq
Source§impl<'a> Parse<'a> for PidSelectReq
impl<'a> Parse<'a> for PidSelectReq
Source§impl PartialEq for PidSelectReq
impl PartialEq for PidSelectReq
Source§impl Serialize for PidSelectReq
Available on crate feature serde only.
impl Serialize for PidSelectReq
Available on crate feature
serde only.Source§impl Serialize for PidSelectReq
impl Serialize for PidSelectReq
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 PidSelectReq
Auto Trait Implementations§
impl Freeze for PidSelectReq
impl RefUnwindSafe for PidSelectReq
impl Send for PidSelectReq
impl Sync for PidSelectReq
impl Unpin for PidSelectReq
impl UnsafeUnpin for PidSelectReq
impl UnwindSafe for PidSelectReq
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