#[non_exhaustive]pub struct DssWriteOptions {
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 DssWriteOptions
impl Clone for DssWriteOptions
Source§fn clone(&self) -> DssWriteOptions
fn clone(&self) -> DssWriteOptions
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 DssWriteOptions
impl Debug for DssWriteOptions
Source§impl Default for DssWriteOptions
impl Default for DssWriteOptions
Source§impl PartialEq for DssWriteOptions
impl PartialEq for DssWriteOptions
impl StructuralPartialEq for DssWriteOptions
Auto Trait Implementations§
impl Freeze for DssWriteOptions
impl RefUnwindSafe for DssWriteOptions
impl Send for DssWriteOptions
impl Sync for DssWriteOptions
impl Unpin for DssWriteOptions
impl UnsafeUnpin for DssWriteOptions
impl UnwindSafe for DssWriteOptions
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