pub struct ResolvedVoltageScope {
pub bus_rows: BTreeSet<usize>,
pub low: f64,
pub high: Option<f64>,
}Expand description
One voltage statement’s buses and limits. high is absent for a deviation
statement that names one value.
Fields§
§bus_rows: BTreeSet<usize>§low: f64§high: Option<f64>Trait Implementations§
Source§impl Clone for ResolvedVoltageScope
impl Clone for ResolvedVoltageScope
Source§fn clone(&self) -> ResolvedVoltageScope
fn clone(&self) -> ResolvedVoltageScope
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 ResolvedVoltageScope
impl Debug for ResolvedVoltageScope
Source§impl Default for ResolvedVoltageScope
impl Default for ResolvedVoltageScope
Source§fn default() -> ResolvedVoltageScope
fn default() -> ResolvedVoltageScope
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolvedVoltageScope
impl PartialEq for ResolvedVoltageScope
Source§fn eq(&self, other: &ResolvedVoltageScope) -> bool
fn eq(&self, other: &ResolvedVoltageScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolvedVoltageScope
Auto Trait Implementations§
impl Freeze for ResolvedVoltageScope
impl RefUnwindSafe for ResolvedVoltageScope
impl Send for ResolvedVoltageScope
impl Sync for ResolvedVoltageScope
impl Unpin for ResolvedVoltageScope
impl UnsafeUnpin for ResolvedVoltageScope
impl UnwindSafe for ResolvedVoltageScope
Blanket Implementations§
impl<T> Allocation for T
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