#[non_exhaustive]pub enum InterpolationType {
Reserved0,
Linear,
Lagrange,
Reserved3,
Hermite,
ReservedOther(u8),
}Expand description
Interpolation type coding — ETSI EN 300 468 §5.2.11.6 Table 11i.
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.
Reserved0
0 — Reserved.
Linear
1 — Linear.
Lagrange
2 — Lagrange.
Reserved3
3 — Reserved.
Hermite
4 — Hermite.
ReservedOther(u8)
5..=7 — Reserved.
Implementations§
Trait Implementations§
Source§impl Clone for InterpolationType
impl Clone for InterpolationType
Source§fn clone(&self) -> InterpolationType
fn clone(&self) -> InterpolationType
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 InterpolationType
Source§impl Debug for InterpolationType
impl Debug for InterpolationType
impl Eq for InterpolationType
Source§impl PartialEq for InterpolationType
impl PartialEq for InterpolationType
Source§fn eq(&self, other: &InterpolationType) -> bool
fn eq(&self, other: &InterpolationType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InterpolationType
impl Serialize for InterpolationType
impl StructuralPartialEq for InterpolationType
Auto Trait Implementations§
impl Freeze for InterpolationType
impl RefUnwindSafe for InterpolationType
impl Send for InterpolationType
impl Sync for InterpolationType
impl Unpin for InterpolationType
impl UnsafeUnpin for InterpolationType
impl UnwindSafe for InterpolationType
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