pub enum DbRangeEntryData {
DbScale(DbScale),
DbInterval(DbInterval),
DbRange(DbRange),
}Expand description
The enumeration to dispatch each type of data for entry of dB range.
Variants§
Trait Implementations§
Source§impl Clone for DbRangeEntryData
impl Clone for DbRangeEntryData
Source§fn clone(&self) -> DbRangeEntryData
fn clone(&self) -> DbRangeEntryData
Returns a duplicate of the value. Read more
1.0.0 · 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 DbRangeEntryData
impl Debug for DbRangeEntryData
Source§impl PartialEq for DbRangeEntryData
impl PartialEq for DbRangeEntryData
impl Eq for DbRangeEntryData
impl StructuralPartialEq for DbRangeEntryData
Auto Trait Implementations§
impl Freeze for DbRangeEntryData
impl RefUnwindSafe for DbRangeEntryData
impl Send for DbRangeEntryData
impl Sync for DbRangeEntryData
impl Unpin for DbRangeEntryData
impl UnwindSafe for DbRangeEntryData
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