#[non_exhaustive]pub struct DssEmitOptions {
pub default_load_voltage_bounds: Option<DssLoadVoltageBounds>,
pub buscoords_filename: Option<String>,
}Expand description
Options for canonical OpenDSS output.
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.default_load_voltage_bounds: Option<DssLoadVoltageBounds>Default voltage validity band emitted on loads that do not already
carry vminpu / vmaxpu extras.
buscoords_filename: Option<String>Relative companion file named by the emitted Buscoords command.
None drops typed bus locations with a warning.
Trait Implementations§
Source§impl Clone for DssEmitOptions
impl Clone for DssEmitOptions
Source§fn clone(&self) -> DssEmitOptions
fn clone(&self) -> DssEmitOptions
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 DssEmitOptions
impl Debug for DssEmitOptions
Source§impl Default for DssEmitOptions
impl Default for DssEmitOptions
Source§impl PartialEq for DssEmitOptions
impl PartialEq for DssEmitOptions
Source§fn eq(&self, other: &DssEmitOptions) -> bool
fn eq(&self, other: &DssEmitOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DssEmitOptions
Auto Trait Implementations§
impl Freeze for DssEmitOptions
impl RefUnwindSafe for DssEmitOptions
impl Send for DssEmitOptions
impl Sync for DssEmitOptions
impl Unpin for DssEmitOptions
impl UnsafeUnpin for DssEmitOptions
impl UnwindSafe for DssEmitOptions
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