pub struct RealTimeParameters {
pub delta_t: u16,
pub table_boundary: bool,
pub frame_boundary: bool,
pub address: u32,
}Expand description
Time-slicing / MPE-FEC real-time parameters (EN 301 192 §9.10, Table 46).
32 bits: delta_t(12) | table_boundary(1) | frame_boundary(1)
| address(18).
Fields§
§delta_t: u1612-bit delta_t — time until the start of the next burst (in units of
the MPE-FEC frame, see §9.10).
table_boundary: booltable_boundary flag.
frame_boundary: boolframe_boundary flag.
address: u3218-bit address — byte position of the first payload byte of this
section within the MPE-FEC frame table.
Trait Implementations§
Source§impl Clone for RealTimeParameters
impl Clone for RealTimeParameters
Source§fn clone(&self) -> RealTimeParameters
fn clone(&self) -> RealTimeParameters
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 RealTimeParameters
Source§impl Debug for RealTimeParameters
impl Debug for RealTimeParameters
impl Eq for RealTimeParameters
Source§impl PartialEq for RealTimeParameters
impl PartialEq for RealTimeParameters
Source§fn eq(&self, other: &RealTimeParameters) -> bool
fn eq(&self, other: &RealTimeParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RealTimeParameters
impl Serialize for RealTimeParameters
impl StructuralPartialEq for RealTimeParameters
Auto Trait Implementations§
impl Freeze for RealTimeParameters
impl RefUnwindSafe for RealTimeParameters
impl Send for RealTimeParameters
impl Sync for RealTimeParameters
impl Unpin for RealTimeParameters
impl UnsafeUnpin for RealTimeParameters
impl UnwindSafe for RealTimeParameters
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