pub struct TeletextEntry {
pub language_code: LangCode,
pub teletext_type: u8,
pub magazine_number: u8,
pub page_number: u8,
}Expand description
One teletext component.
Fields§
§language_code: LangCodeISO 639-2 language code of this teletext service.
teletext_type: u85-bit teletext_type (ETSI Table 102): 1 = initial page, 2 = subtitle, etc.
magazine_number: u83-bit teletext_magazine_number.
page_number: u88-bit BCD teletext_page_number.
Trait Implementations§
Source§impl Clone for TeletextEntry
impl Clone for TeletextEntry
Source§fn clone(&self) -> TeletextEntry
fn clone(&self) -> TeletextEntry
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 Debug for TeletextEntry
impl Debug for TeletextEntry
impl Eq for TeletextEntry
Source§impl PartialEq for TeletextEntry
impl PartialEq for TeletextEntry
Source§fn eq(&self, other: &TeletextEntry) -> bool
fn eq(&self, other: &TeletextEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TeletextEntry
impl Serialize for TeletextEntry
impl StructuralPartialEq for TeletextEntry
Auto Trait Implementations§
impl Freeze for TeletextEntry
impl RefUnwindSafe for TeletextEntry
impl Send for TeletextEntry
impl Sync for TeletextEntry
impl Unpin for TeletextEntry
impl UnsafeUnpin for TeletextEntry
impl UnwindSafe for TeletextEntry
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