pub struct DbRangeEntry {
pub min_val: i32,
pub max_val: i32,
pub data: DbRangeEntryData,
}Expand description
The entry to express information of each entry of dB range.
Fields§
§min_val: i32§max_val: i32§data: DbRangeEntryDataThe data of dB expression for the minimum/maximum range in the state of control element.
Trait Implementations§
Source§impl Clone for DbRangeEntry
impl Clone for DbRangeEntry
Source§fn clone(&self) -> DbRangeEntry
fn clone(&self) -> DbRangeEntry
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 DbRangeEntry
impl Debug for DbRangeEntry
Source§impl From<&DbRangeEntry> for Vec<u32>
impl From<&DbRangeEntry> for Vec<u32>
Source§fn from(entry: &DbRangeEntry) -> Self
fn from(entry: &DbRangeEntry) -> Self
Converts to this type from the input type.
Source§impl From<DbRangeEntry> for Vec<u32>
impl From<DbRangeEntry> for Vec<u32>
Source§fn from(entry: DbRangeEntry) -> Self
fn from(entry: DbRangeEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DbRangeEntry
impl PartialEq for DbRangeEntry
Source§impl ToDbInterval for DbRangeEntry
impl ToDbInterval for DbRangeEntry
fn to_dbinterval( &self, range: &ValueRange, ) -> Result<DbInterval, ToDbIntervalError>
Source§impl ToValueRange for DbRangeEntry
impl ToValueRange for DbRangeEntry
fn to_valuerange(&self, range: &ValueRange) -> Option<ValueRange>
Source§impl TryFrom<&[u32]> for DbRangeEntry
impl TryFrom<&[u32]> for DbRangeEntry
impl Eq for DbRangeEntry
impl StructuralPartialEq for DbRangeEntry
Auto Trait Implementations§
impl Freeze for DbRangeEntry
impl RefUnwindSafe for DbRangeEntry
impl Send for DbRangeEntry
impl Sync for DbRangeEntry
impl Unpin for DbRangeEntry
impl UnwindSafe for DbRangeEntry
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