pub struct Cea608StyledChar {
pub ch: char,
pub underline: bool,
pub italics: bool,
pub color: Cea608Color,
}Available on crate feature
decode only.Expand description
A styled character cell on a 608 caption screen.
Fields§
§ch: charThe glyph.
underline: boolUnderline attribute.
italics: boolItalics attribute.
color: Cea608ColorForeground colour (CTA-608-E Tables 51/53).
Trait Implementations§
Source§impl Clone for Cea608StyledChar
impl Clone for Cea608StyledChar
Source§fn clone(&self) -> Cea608StyledChar
fn clone(&self) -> Cea608StyledChar
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 moreimpl Copy for Cea608StyledChar
Source§impl Debug for Cea608StyledChar
impl Debug for Cea608StyledChar
Source§impl Default for Cea608StyledChar
impl Default for Cea608StyledChar
impl Eq for Cea608StyledChar
Source§impl PartialEq for Cea608StyledChar
impl PartialEq for Cea608StyledChar
Source§fn eq(&self, other: &Cea608StyledChar) -> bool
fn eq(&self, other: &Cea608StyledChar) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Cea608StyledChar
impl Serialize for Cea608StyledChar
impl StructuralPartialEq for Cea608StyledChar
Auto Trait Implementations§
impl Freeze for Cea608StyledChar
impl RefUnwindSafe for Cea608StyledChar
impl Send for Cea608StyledChar
impl Sync for Cea608StyledChar
impl Unpin for Cea608StyledChar
impl UnsafeUnpin for Cea608StyledChar
impl UnwindSafe for Cea608StyledChar
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