pub struct LoadDyn {
pub bus: u32,
pub load_id: String,
pub model: LoadModel,
}Expand description
A load dynamic model record — attaches to a load bus (not a generator bus).
Fields§
§bus: u32Bus number of the associated static load.
load_id: StringLoad ID (matches PSS/E load record ID, e.g. "1", "L1").
model: LoadModelThe specific load model and its parameters.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoadDyn
impl<'de> Deserialize<'de> for LoadDyn
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
Auto Trait Implementations§
impl Freeze for LoadDyn
impl RefUnwindSafe for LoadDyn
impl Send for LoadDyn
impl Sync for LoadDyn
impl Unpin for LoadDyn
impl UnsafeUnpin for LoadDyn
impl UnwindSafe for LoadDyn
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