pub struct SdUpdate<'a> {
pub lts_id: u8,
pub payload: SamplePayload<'a>,
}Expand description
sd_update() (Table 38): Host → CICAM. Same ts_flag-selected payload shape
as SdStart, but the per-LTS header has no program_number.
Fields§
§lts_id: u8LTS_id (8) — Local TS for which the update applies.
payload: SamplePayload<'a>The ts_flag-selected payload (shall match the sd_start ts_flag).
Trait Implementations§
impl<'a> Eq for SdUpdate<'a>
Source§impl Serialize for SdUpdate<'_>
impl Serialize for SdUpdate<'_>
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<'a> StructuralPartialEq for SdUpdate<'a>
Auto Trait Implementations§
impl<'a> Freeze for SdUpdate<'a>
impl<'a> RefUnwindSafe for SdUpdate<'a>
impl<'a> Send for SdUpdate<'a>
impl<'a> Sync for SdUpdate<'a>
impl<'a> Unpin for SdUpdate<'a>
impl<'a> UnsafeUnpin for SdUpdate<'a>
impl<'a> UnwindSafe for SdUpdate<'a>
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