pub enum DmxStartAddress {
NoAddress,
Address(u16),
}
Variants§
NoAddress
The requested device has a dmx footprint of 0.
Address(u16)
The requested device does allocate dmx addresses.
Implementations§
Trait Implementations§
Source§impl Clone for DmxStartAddress
impl Clone for DmxStartAddress
Source§fn clone(&self) -> DmxStartAddress
fn clone(&self) -> DmxStartAddress
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 DmxStartAddress
impl Debug for DmxStartAddress
Source§impl Format for DmxStartAddress
impl Format for DmxStartAddress
Auto Trait Implementations§
impl Freeze for DmxStartAddress
impl RefUnwindSafe for DmxStartAddress
impl Send for DmxStartAddress
impl Sync for DmxStartAddress
impl Unpin for DmxStartAddress
impl UnwindSafe for DmxStartAddress
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