pub struct ExtendedEventDescriptor<'a> {
pub descriptor_number: u8,
pub last_descriptor_number: u8,
pub language_code: LangCode,
pub items: Vec<ExtendedEventItem<'a>>,
pub text: DvbText<'a>,
}Expand description
Extended Event Descriptor.
Fields§
§descriptor_number: u80-based fragment index within the extended event series.
last_descriptor_number: u8Index of the final fragment in the series (0-based).
language_code: LangCodeISO 639-2 language code.
items: Vec<ExtendedEventItem<'a>>Item list.
text: DvbText<'a>DVB Annex-A encoded extended text.
Trait Implementations§
Source§impl<'a> Clone for ExtendedEventDescriptor<'a>
impl<'a> Clone for ExtendedEventDescriptor<'a>
Source§fn clone(&self) -> ExtendedEventDescriptor<'a>
fn clone(&self) -> ExtendedEventDescriptor<'a>
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 moreSource§impl<'a> Debug for ExtendedEventDescriptor<'a>
impl<'a> Debug for ExtendedEventDescriptor<'a>
Source§impl<'a> Descriptor<'a> for ExtendedEventDescriptor<'a>
impl<'a> Descriptor<'a> for ExtendedEventDescriptor<'a>
Source§impl<'a> DescriptorDef<'a> for ExtendedEventDescriptor<'a>
impl<'a> DescriptorDef<'a> for ExtendedEventDescriptor<'a>
impl<'a> Eq for ExtendedEventDescriptor<'a>
Source§impl<'a> From<ExtendedEventDescriptor<'a>> for AnyDescriptor<'a>
impl<'a> From<ExtendedEventDescriptor<'a>> for AnyDescriptor<'a>
Source§fn from(d: ExtendedEventDescriptor<'a>) -> Self
fn from(d: ExtendedEventDescriptor<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for ExtendedEventDescriptor<'a>
impl<'a> Parse<'a> for ExtendedEventDescriptor<'a>
Source§impl<'a> PartialEq for ExtendedEventDescriptor<'a>
impl<'a> PartialEq for ExtendedEventDescriptor<'a>
Source§fn eq(&self, other: &ExtendedEventDescriptor<'a>) -> bool
fn eq(&self, other: &ExtendedEventDescriptor<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExtendedEventDescriptor<'_>
impl Serialize for ExtendedEventDescriptor<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.Source§impl<'a> Serialize for ExtendedEventDescriptor<'a>
impl<'a> Serialize for ExtendedEventDescriptor<'a>
impl<'a> StructuralPartialEq for ExtendedEventDescriptor<'a>
Source§impl<'a> Yokeable<'a> for ExtendedEventDescriptor<'static>
impl<'a> Yokeable<'a> for ExtendedEventDescriptor<'static>
Source§type Output = ExtendedEventDescriptor<'a>
type Output = ExtendedEventDescriptor<'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 ExtendedEventDescriptor<'a>
impl<'a> RefUnwindSafe for ExtendedEventDescriptor<'a>
impl<'a> Send for ExtendedEventDescriptor<'a>
impl<'a> Sync for ExtendedEventDescriptor<'a>
impl<'a> Unpin for ExtendedEventDescriptor<'a>
impl<'a> UnsafeUnpin for ExtendedEventDescriptor<'a>
impl<'a> UnwindSafe for ExtendedEventDescriptor<'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