pub struct NetworkNameEntry<'a> {
pub language_code: LangCode,
pub network_name: DvbText<'a>,
}Expand description
One localised network name.
Fields§
§language_code: LangCodeISO 639-2 language code.
network_name: DvbText<'a>DVB Annex-A encoded network name.
Trait Implementations§
Source§impl<'a> Clone for NetworkNameEntry<'a>
impl<'a> Clone for NetworkNameEntry<'a>
Source§fn clone(&self) -> NetworkNameEntry<'a>
fn clone(&self) -> NetworkNameEntry<'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 NetworkNameEntry<'a>
impl<'a> Debug for NetworkNameEntry<'a>
impl<'a> Eq for NetworkNameEntry<'a>
Source§impl<'a> PartialEq for NetworkNameEntry<'a>
impl<'a> PartialEq for NetworkNameEntry<'a>
Source§fn eq(&self, other: &NetworkNameEntry<'a>) -> bool
fn eq(&self, other: &NetworkNameEntry<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for NetworkNameEntry<'a>
impl<'a> Serialize for NetworkNameEntry<'a>
impl<'a> StructuralPartialEq for NetworkNameEntry<'a>
Source§impl<'a> Yokeable<'a> for NetworkNameEntry<'static>
impl<'a> Yokeable<'a> for NetworkNameEntry<'static>
Source§type Output = NetworkNameEntry<'a>
type Output = NetworkNameEntry<'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 NetworkNameEntry<'a>
impl<'a> RefUnwindSafe for NetworkNameEntry<'a>
impl<'a> Send for NetworkNameEntry<'a>
impl<'a> Sync for NetworkNameEntry<'a>
impl<'a> Unpin for NetworkNameEntry<'a>
impl<'a> UnsafeUnpin for NetworkNameEntry<'a>
impl<'a> UnwindSafe for NetworkNameEntry<'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