pub struct SetVoltage {
pub min: Option<f64>,
pub object_list: Option<Object>,
pub max_case_voltage: f64,
}Expand description
A type containing information of set_voltage
Fields§
§min: Option<f64>§object_list: Option<Object>§max_case_voltage: f64Trait Implementations§
Source§impl Clone for SetVoltage
impl Clone for SetVoltage
Source§fn clone(&self) -> SetVoltage
fn clone(&self) -> SetVoltage
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 SetVoltage
impl Debug for SetVoltage
Source§impl Default for SetVoltage
impl Default for SetVoltage
Source§fn default() -> SetVoltage
fn default() -> SetVoltage
Returns the “default value” for a type. Read more
Source§impl Display for SetVoltage
impl Display for SetVoltage
Source§impl PartialEq for SetVoltage
impl PartialEq for SetVoltage
impl StructuralPartialEq for SetVoltage
Auto Trait Implementations§
impl Freeze for SetVoltage
impl RefUnwindSafe for SetVoltage
impl Send for SetVoltage
impl Sync for SetVoltage
impl Unpin for SetVoltage
impl UnwindSafe for SetVoltage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more