#[repr(u8)]pub enum ApplicationRequest {
NoApply = 0,
Apply = 1,
ApplyOnly = 2,
}
Expand description
Controls how/when multizone devices apply color changes
See also Message::SetColorZones.
Variants§
NoApply = 0
Don’t apply the requested changes until a message with Apply or ApplyOnly is sent
Apply = 1
Apply the changes immediately and apply any pending changes
ApplyOnly = 2
Ignore the requested changes in this message and only apply pending changes
Trait Implementations§
Source§impl Clone for ApplicationRequest
impl Clone for ApplicationRequest
Source§fn clone(&self) -> ApplicationRequest
fn clone(&self) -> ApplicationRequest
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 ApplicationRequest
impl Debug for ApplicationRequest
Source§impl PartialEq for ApplicationRequest
impl PartialEq for ApplicationRequest
Source§impl TryFrom<u8> for ApplicationRequest
impl TryFrom<u8> for ApplicationRequest
impl Copy for ApplicationRequest
impl Eq for ApplicationRequest
impl StructuralPartialEq for ApplicationRequest
Auto Trait Implementations§
impl Freeze for ApplicationRequest
impl RefUnwindSafe for ApplicationRequest
impl Send for ApplicationRequest
impl Sync for ApplicationRequest
impl Unpin for ApplicationRequest
impl UnwindSafe for ApplicationRequest
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