#[non_exhaustive]pub enum DisplayMessageId {
DisplayOk,
DisplayError,
DisplayOutOfMemory,
DvbSubtitlingSyntaxError,
UndefinedRegionReferenced,
UndefinedClutReferenced,
UndefinedObjectReferenced,
ObjectIncompatibleWithRegion,
UnknownCharacterReferenced,
DisplayCharacteristicsChanged,
Reserved(u8),
}Expand description
display_message_id values (Table 39, p. 42).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DisplayOk
00 — Display OK.
DisplayError
01 — Display Error.
DisplayOutOfMemory
02 — Display out of memory.
DvbSubtitlingSyntaxError
03 — DVB Subtitling syntax error.
UndefinedRegionReferenced
04 — Undefined region referenced.
UndefinedClutReferenced
05 — Undefined CLUT referenced.
UndefinedObjectReferenced
06 — Undefined object referenced.
ObjectIncompatibleWithRegion
07 — Object incompatible with region.
UnknownCharacterReferenced
08 — Unknown character referenced.
DisplayCharacteristicsChanged
09 — Display characteristics changed.
Reserved(u8)
Any other value (reserved).
Implementations§
Trait Implementations§
Source§impl Clone for DisplayMessageId
impl Clone for DisplayMessageId
Source§fn clone(&self) -> DisplayMessageId
fn clone(&self) -> DisplayMessageId
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 DisplayMessageId
Source§impl Debug for DisplayMessageId
impl Debug for DisplayMessageId
Source§impl Display for DisplayMessageId
impl Display for DisplayMessageId
impl Eq for DisplayMessageId
Source§impl PartialEq for DisplayMessageId
impl PartialEq for DisplayMessageId
Source§fn eq(&self, other: &DisplayMessageId) -> bool
fn eq(&self, other: &DisplayMessageId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DisplayMessageId
impl Serialize for DisplayMessageId
impl StructuralPartialEq for DisplayMessageId
Auto Trait Implementations§
impl Freeze for DisplayMessageId
impl RefUnwindSafe for DisplayMessageId
impl Send for DisplayMessageId
impl Sync for DisplayMessageId
impl Unpin for DisplayMessageId
impl UnsafeUnpin for DisplayMessageId
impl UnwindSafe for DisplayMessageId
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