#[non_exhaustive]pub struct Crid {
pub crid_type: CridType,
pub crid: String,
}Expand description
A content reference identifier entry from a
ContentIdentifierDescriptor.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.crid_type: CridTypeCRID type (TS 102 323 Table 117: 0x01 = item of content, 0x02 = series, 0x03 = recommendation).
crid: StringThe CRID locator string.
Trait Implementations§
impl Eq for Crid
impl StructuralPartialEq for Crid
Auto Trait Implementations§
impl Freeze for Crid
impl RefUnwindSafe for Crid
impl Send for Crid
impl Sync for Crid
impl Unpin for Crid
impl UnsafeUnpin for Crid
impl UnwindSafe for Crid
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