pub struct InputRanges {
pub input_type: Option<String>,
pub minimum_voltage: Option<i64>,
pub maximum_voltage: Option<i64>,
pub output_wattage: Option<i64>,
}Fields§
§input_type: Option<String>§minimum_voltage: Option<i64>§maximum_voltage: Option<i64>§output_wattage: Option<i64>Trait Implementations§
Source§impl Clone for InputRanges
impl Clone for InputRanges
Source§fn clone(&self) -> InputRanges
fn clone(&self) -> InputRanges
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 InputRanges
impl Debug for InputRanges
Source§impl<'de> Deserialize<'de> for InputRanges
impl<'de> Deserialize<'de> for InputRanges
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
Auto Trait Implementations§
impl Freeze for InputRanges
impl RefUnwindSafe for InputRanges
impl Send for InputRanges
impl Sync for InputRanges
impl Unpin for InputRanges
impl UnsafeUnpin for InputRanges
impl UnwindSafe for InputRanges
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