pub struct SimpleApplicationLocationDescriptor<'a> {
pub initial_path_bytes: DvbText<'a>,
}Expand description
Simple Application Location Descriptor (AIT tag 0x15).
Fields§
§initial_path_bytes: DvbText<'a>Initial path bytes (DVB Annex-A encoded; typically ASCII/UTF-8).
Trait Implementations§
Source§impl<'a> Clone for SimpleApplicationLocationDescriptor<'a>
impl<'a> Clone for SimpleApplicationLocationDescriptor<'a>
Source§fn clone(&self) -> SimpleApplicationLocationDescriptor<'a>
fn clone(&self) -> SimpleApplicationLocationDescriptor<'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 SimpleApplicationLocationDescriptor<'a>
impl<'a> Debug for SimpleApplicationLocationDescriptor<'a>
Source§impl<'a> DescriptorDef<'a> for SimpleApplicationLocationDescriptor<'a>
impl<'a> DescriptorDef<'a> for SimpleApplicationLocationDescriptor<'a>
impl<'a> Eq for SimpleApplicationLocationDescriptor<'a>
Source§impl<'a> From<SimpleApplicationLocationDescriptor<'a>> for AnyAitDescriptor<'a>
impl<'a> From<SimpleApplicationLocationDescriptor<'a>> for AnyAitDescriptor<'a>
Source§fn from(d: SimpleApplicationLocationDescriptor<'a>) -> Self
fn from(d: SimpleApplicationLocationDescriptor<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Parse<'a> for SimpleApplicationLocationDescriptor<'a>
impl<'a> Parse<'a> for SimpleApplicationLocationDescriptor<'a>
Source§impl<'a> PartialEq for SimpleApplicationLocationDescriptor<'a>
impl<'a> PartialEq for SimpleApplicationLocationDescriptor<'a>
Source§fn eq(&self, other: &SimpleApplicationLocationDescriptor<'a>) -> bool
fn eq(&self, other: &SimpleApplicationLocationDescriptor<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for SimpleApplicationLocationDescriptor<'a>
impl<'a> Serialize for SimpleApplicationLocationDescriptor<'a>
Source§impl Serialize for SimpleApplicationLocationDescriptor<'_>
impl Serialize for SimpleApplicationLocationDescriptor<'_>
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.impl<'a> StructuralPartialEq for SimpleApplicationLocationDescriptor<'a>
Source§impl<'a> Yokeable<'a> for SimpleApplicationLocationDescriptor<'static>
impl<'a> Yokeable<'a> for SimpleApplicationLocationDescriptor<'static>
Source§type Output = SimpleApplicationLocationDescriptor<'a>
type Output = SimpleApplicationLocationDescriptor<'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 SimpleApplicationLocationDescriptor<'a>
impl<'a> RefUnwindSafe for SimpleApplicationLocationDescriptor<'a>
impl<'a> Send for SimpleApplicationLocationDescriptor<'a>
impl<'a> Sync for SimpleApplicationLocationDescriptor<'a>
impl<'a> Unpin for SimpleApplicationLocationDescriptor<'a>
impl<'a> UnsafeUnpin for SimpleApplicationLocationDescriptor<'a>
impl<'a> UnwindSafe for SimpleApplicationLocationDescriptor<'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