#[non_exhaustive]pub struct DssLoadVoltageBounds {
pub vminpu: f64,
pub vmaxpu: f64,
}Expand description
OpenDSS per unit load voltage validity band.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.vminpu: f64§vmaxpu: f64Trait Implementations§
Source§impl Clone for DssLoadVoltageBounds
impl Clone for DssLoadVoltageBounds
Source§fn clone(&self) -> DssLoadVoltageBounds
fn clone(&self) -> DssLoadVoltageBounds
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 DssLoadVoltageBounds
impl Debug for DssLoadVoltageBounds
Source§impl Default for DssLoadVoltageBounds
impl Default for DssLoadVoltageBounds
Source§impl PartialEq for DssLoadVoltageBounds
impl PartialEq for DssLoadVoltageBounds
Source§fn eq(&self, other: &DssLoadVoltageBounds) -> bool
fn eq(&self, other: &DssLoadVoltageBounds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DssLoadVoltageBounds
impl StructuralPartialEq for DssLoadVoltageBounds
Auto Trait Implementations§
impl Freeze for DssLoadVoltageBounds
impl RefUnwindSafe for DssLoadVoltageBounds
impl Send for DssLoadVoltageBounds
impl Sync for DssLoadVoltageBounds
impl Unpin for DssLoadVoltageBounds
impl UnsafeUnpin for DssLoadVoltageBounds
impl UnwindSafe for DssLoadVoltageBounds
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