pub struct CridEntry<'a> {
pub crid_type: u8,
pub location: CridLocation<'a>,
}Expand description
One CRID entry within a Content Identifier Descriptor.
Fields§
§crid_type: u8crid_type byte — identifies what the entry references. Per TS 102 323 Table 8: 0x01 = episode, 0x02 = series, 0x03 = recommendation, 0x31..=0x3F = user-defined.
location: CridLocation<'a>crid_location and its payload.
Trait Implementations§
impl<'a> Eq for CridEntry<'a>
Source§impl<'a> PartialEq for CridEntry<'a>
impl<'a> PartialEq for CridEntry<'a>
impl<'a> StructuralPartialEq for CridEntry<'a>
Source§impl<'a> Yokeable<'a> for CridEntry<'static>
impl<'a> Yokeable<'a> for CridEntry<'static>
Source§type Output = CridEntry<'a>
type Output = CridEntry<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for CridEntry<'a>
impl<'a> RefUnwindSafe for CridEntry<'a>
impl<'a> Send for CridEntry<'a>
impl<'a> Sync for CridEntry<'a>
impl<'a> Unpin for CridEntry<'a>
impl<'a> UnsafeUnpin for CridEntry<'a>
impl<'a> UnwindSafe for CridEntry<'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