#[non_exhaustive]pub enum EitResponseCode {
NotOnPresentDocument,
NotAvailable,
SectionFound,
Reserved,
}Expand description
ResponseCode — EIT section response status (Table 34).
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.
NotOnPresentDocument
0b00 — Section not on the present document (may be on another TS).
NotAvailable
0b01 — Section not available.
SectionFound
0b10 — Section found.
Reserved
0b11 — reserved.
Implementations§
Trait Implementations§
Source§impl Clone for EitResponseCode
impl Clone for EitResponseCode
Source§fn clone(&self) -> EitResponseCode
fn clone(&self) -> EitResponseCode
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 EitResponseCode
Source§impl Debug for EitResponseCode
impl Debug for EitResponseCode
Source§impl Display for EitResponseCode
impl Display for EitResponseCode
impl Eq for EitResponseCode
Source§impl PartialEq for EitResponseCode
impl PartialEq for EitResponseCode
Source§impl Serialize for EitResponseCode
Available on crate feature serde only.
impl Serialize for EitResponseCode
Available on crate feature
serde only.impl StructuralPartialEq for EitResponseCode
Auto Trait Implementations§
impl Freeze for EitResponseCode
impl RefUnwindSafe for EitResponseCode
impl Send for EitResponseCode
impl Sync for EitResponseCode
impl Unpin for EitResponseCode
impl UnsafeUnpin for EitResponseCode
impl UnwindSafe for EitResponseCode
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