#[non_exhaustive]pub struct LinDist3FlowPreparation {
pub network: LinDist3FlowNetworkData,
pub devices: LinDist3FlowDeviceData,
}Expand description
Complete solver-neutral preparation for the currently supported L3F slice.
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.network: LinDist3FlowNetworkData§devices: LinDist3FlowDeviceDataTrait Implementations§
Source§impl Clone for LinDist3FlowPreparation
impl Clone for LinDist3FlowPreparation
Source§fn clone(&self) -> LinDist3FlowPreparation
fn clone(&self) -> LinDist3FlowPreparation
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 LinDist3FlowPreparation
impl Debug for LinDist3FlowPreparation
Source§impl PartialEq for LinDist3FlowPreparation
impl PartialEq for LinDist3FlowPreparation
Source§fn eq(&self, other: &LinDist3FlowPreparation) -> bool
fn eq(&self, other: &LinDist3FlowPreparation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LinDist3FlowPreparation
Auto Trait Implementations§
impl Freeze for LinDist3FlowPreparation
impl RefUnwindSafe for LinDist3FlowPreparation
impl Send for LinDist3FlowPreparation
impl Sync for LinDist3FlowPreparation
impl Unpin for LinDist3FlowPreparation
impl UnsafeUnpin for LinDist3FlowPreparation
impl UnwindSafe for LinDist3FlowPreparation
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