#[non_exhaustive]pub enum HandOverType {
DvbIdenticalNeighbouringCountry,
DvbLocalVariation,
DvbAssociatedService,
Reserved(u8),
}Expand description
Hand-over type — ETSI EN 300 468 Table 62.
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.
DvbIdenticalNeighbouringCountry
0x1 — DVB hand-over to an identical service in a neighbouring country.
DvbLocalVariation
0x2 — DVB hand-over to a local variation of the same service.
DvbAssociatedService
0x3 — DVB hand-over to an associated service.
Reserved(u8)
Reserved/unallocated wire value, preserved verbatim for round-trip.
Implementations§
Source§impl HandOverType
impl HandOverType
Trait Implementations§
Source§impl Clone for HandOverType
impl Clone for HandOverType
Source§fn clone(&self) -> HandOverType
fn clone(&self) -> HandOverType
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 HandOverType
Source§impl Debug for HandOverType
impl Debug for HandOverType
impl Eq for HandOverType
Source§impl PartialEq for HandOverType
impl PartialEq for HandOverType
Source§fn eq(&self, other: &HandOverType) -> bool
fn eq(&self, other: &HandOverType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HandOverType
impl Serialize for HandOverType
impl StructuralPartialEq for HandOverType
Auto Trait Implementations§
impl Freeze for HandOverType
impl RefUnwindSafe for HandOverType
impl Send for HandOverType
impl Sync for HandOverType
impl Unpin for HandOverType
impl UnsafeUnpin for HandOverType
impl UnwindSafe for HandOverType
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