pub enum GainElementName {
Tuner,
Lna,
Mix,
Vga,
Pga,
Custom(String),
}Expand description
Gain element identifier
Common gain elements across different SDR devices. Devices validate which elements they support.
Variants§
Trait Implementations§
Source§impl Clone for GainElementName
impl Clone for GainElementName
Source§fn clone(&self) -> GainElementName
fn clone(&self) -> GainElementName
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 GainElementName
impl Debug for GainElementName
Source§impl Hash for GainElementName
impl Hash for GainElementName
Source§impl PartialEq for GainElementName
impl PartialEq for GainElementName
Source§impl Serialize for GainElementName
impl Serialize for GainElementName
impl Eq for GainElementName
impl StructuralPartialEq for GainElementName
Auto Trait Implementations§
impl Freeze for GainElementName
impl RefUnwindSafe for GainElementName
impl Send for GainElementName
impl Sync for GainElementName
impl Unpin for GainElementName
impl UnwindSafe for GainElementName
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