#[non_exhaustive]#[repr(u8)]pub enum ExdDisplayType {
Numerical = 0,
Simple = 1,
Graph = 2,
Bar = 3,
CircleGraph = 4,
VirtualPartner = 5,
Balance = 6,
StringList = 7,
String = 8,
SimpleDynamicIcon = 9,
Gauge = 10,
}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.
Numerical = 0
Simple = 1
Graph = 2
Bar = 3
CircleGraph = 4
VirtualPartner = 5
Balance = 6
StringList = 7
String = 8
SimpleDynamicIcon = 9
Gauge = 10
Implementations§
Trait Implementations§
Source§impl Clone for ExdDisplayType
impl Clone for ExdDisplayType
Source§fn clone(&self) -> ExdDisplayType
fn clone(&self) -> ExdDisplayType
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 moreSource§impl Debug for ExdDisplayType
impl Debug for ExdDisplayType
Source§impl Hash for ExdDisplayType
impl Hash for ExdDisplayType
Source§impl PartialEq for ExdDisplayType
impl PartialEq for ExdDisplayType
Source§fn eq(&self, other: &ExdDisplayType) -> bool
fn eq(&self, other: &ExdDisplayType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ExdDisplayType
impl Eq for ExdDisplayType
impl StructuralPartialEq for ExdDisplayType
Auto Trait Implementations§
impl Freeze for ExdDisplayType
impl RefUnwindSafe for ExdDisplayType
impl Send for ExdDisplayType
impl Sync for ExdDisplayType
impl Unpin for ExdDisplayType
impl UnsafeUnpin for ExdDisplayType
impl UnwindSafe for ExdDisplayType
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