pub enum AddressableElement {
Item {
name: String,
addr: usize,
dec: String,
hex: HexString,
},
Fir {
name: String,
addr: usize,
para: Vec<Para>,
},
Filter {
name: String,
addr: Option<usize>,
freq: u16,
q: f32,
boost: f32,
typ: String,
bypass: Option<u8>,
dec: Option<CommaSeparatedList<f32>>,
hex: Option<CommaSeparatedList<HexString>>,
},
}Variants§
Trait Implementations§
Source§impl Clone for AddressableElement
impl Clone for AddressableElement
Source§fn clone(&self) -> AddressableElement
fn clone(&self) -> AddressableElement
Returns a copy 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 AddressableElement
impl Debug for AddressableElement
Source§impl PartialEq for AddressableElement
impl PartialEq for AddressableElement
Source§impl<'__input> XmlRead<'__input> for AddressableElement
impl<'__input> XmlRead<'__input> for AddressableElement
Source§impl XmlWrite for AddressableElement
impl XmlWrite for AddressableElement
impl StructuralPartialEq for AddressableElement
Auto Trait Implementations§
impl !Freeze for AddressableElement
impl RefUnwindSafe for AddressableElement
impl Send for AddressableElement
impl Sync for AddressableElement
impl Unpin for AddressableElement
impl UnwindSafe for AddressableElement
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