pub struct LedCtrl {
pub led_node: LedNode,
pub led_mode: LedMode,
pub led_on_time: u32,
pub led_off_time: u32,
pub loop_times: u32,
pub interval_time: u32,
}Expand description
“ledctrl” for turning on/off the chamber light, etc.
Fields§
§led_node: LedNode§led_mode: LedMode§led_on_time: u32§led_off_time: u32§loop_times: u32§interval_time: u32Trait Implementations§
Source§impl<'de> Deserialize<'de> for LedCtrl
impl<'de> Deserialize<'de> for LedCtrl
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for LedCtrl
impl Eq for LedCtrl
impl StructuralPartialEq for LedCtrl
Auto Trait Implementations§
impl Freeze for LedCtrl
impl RefUnwindSafe for LedCtrl
impl Send for LedCtrl
impl Sync for LedCtrl
impl Unpin for LedCtrl
impl UnsafeUnpin for LedCtrl
impl UnwindSafe for LedCtrl
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