pub struct TransportScramblingControl(/* private fields */);Expand description
Indicates content scrambling in use, if any.
Actual content scrambling schemes, are undefined in the main TS spec (left to be described by other specifications).
Implementations§
Source§impl TransportScramblingControl
impl TransportScramblingControl
Sourcepub fn is_scrambled(&self) -> bool
pub fn is_scrambled(&self) -> bool
If the transport_scrambling_control field in the Transport Stream data has the value
00, then return false, returns true if transport_scrambling_control has any other
values.
Trait Implementations§
Source§impl Debug for TransportScramblingControl
impl Debug for TransportScramblingControl
impl Eq for TransportScramblingControl
impl StructuralPartialEq for TransportScramblingControl
Auto Trait Implementations§
impl Freeze for TransportScramblingControl
impl RefUnwindSafe for TransportScramblingControl
impl Send for TransportScramblingControl
impl Sync for TransportScramblingControl
impl Unpin for TransportScramblingControl
impl UnwindSafe for TransportScramblingControl
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