#[non_exhaustive]pub struct SolverBusRow {Show 17 fields
pub index: usize,
pub bus_id: BusId,
pub source_row: Option<usize>,
pub kind: BusType,
pub vm: f64,
pub va: f64,
pub base_kv: f64,
pub vmax: f64,
pub vmin: f64,
pub evhi: Option<f64>,
pub evlo: Option<f64>,
pub area: usize,
pub zone: usize,
pub pd: f64,
pub qd: f64,
pub gs: f64,
pub bs: f64,
}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.index: usize§bus_id: BusId§source_row: Option<usize>§kind: BusType§vm: f64§va: f64§base_kv: f64§vmax: f64§vmin: f64§evhi: Option<f64>§evlo: Option<f64>§area: usize§zone: usize§pd: f64§qd: f64§gs: f64§bs: f64Trait Implementations§
Source§impl Clone for SolverBusRow
impl Clone for SolverBusRow
Source§fn clone(&self) -> SolverBusRow
fn clone(&self) -> SolverBusRow
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 SolverBusRow
impl Debug for SolverBusRow
Source§impl<'de> Deserialize<'de> for SolverBusRow
impl<'de> Deserialize<'de> for SolverBusRow
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
Source§impl PartialEq for SolverBusRow
impl PartialEq for SolverBusRow
Source§impl Serialize for SolverBusRow
impl Serialize for SolverBusRow
impl StructuralPartialEq for SolverBusRow
Auto Trait Implementations§
impl Freeze for SolverBusRow
impl RefUnwindSafe for SolverBusRow
impl Send for SolverBusRow
impl Sync for SolverBusRow
impl Unpin for SolverBusRow
impl UnsafeUnpin for SolverBusRow
impl UnwindSafe for SolverBusRow
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