pub struct EnterService {
pub custom_data: Option<CustomData>,
pub delay: Option<f64>,
pub high_freq: f64,
pub high_voltage: f64,
pub low_freq: f64,
pub low_voltage: f64,
pub priority: i64,
pub ramp_rate: Option<f64>,
pub random_delay: Option<f64>,
}Fields§
§custom_data: Option<CustomData>§delay: Option<f64>Enter service delay
high_freq: f64Enter service frequency high
high_voltage: f64Enter service voltage high
low_freq: f64Enter service frequency low
low_voltage: f64Enter service voltage low
priority: i64Priority of setting (0=highest)
ramp_rate: Option<f64>Enter service ramp rate in seconds
random_delay: Option<f64>Enter service randomized delay
Trait Implementations§
Source§impl Clone for EnterService
impl Clone for EnterService
Source§fn clone(&self) -> EnterService
fn clone(&self) -> EnterService
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EnterService
impl Debug for EnterService
Source§impl PartialEq for EnterService
impl PartialEq for EnterService
impl StructuralPartialEq for EnterService
Auto Trait Implementations§
impl Freeze for EnterService
impl RefUnwindSafe for EnterService
impl Send for EnterService
impl Sync for EnterService
impl Unpin for EnterService
impl UnsafeUnpin for EnterService
impl UnwindSafe for EnterService
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