#[repr(C)]pub struct DmxFilter {
pub filter: [u8; 16],
pub mask: [u8; 16],
pub mode: [u8; 16],
}
Expand description
Specifies demux section header filter parameters
Fields§
§filter: [u8; 16]
Bit array with bits to be matched at the section header
mask: [u8; 16]
Bits that are valid at the filter bit array
mode: [u8; 16]
Mode of match: if bit is zero, it will match if equal (positive match); if bit is one, it will match if the bit is negated.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DmxFilter
impl RefUnwindSafe for DmxFilter
impl Send for DmxFilter
impl Sync for DmxFilter
impl Unpin for DmxFilter
impl UnwindSafe for DmxFilter
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