pub struct PwdDisplay {
pub canvas_width: u16,
pub canvas_height: u16,
pub stamp: u32,
pub substations: Vec<PwdSubstation>,
}Expand description
Decoded PowerWorld display file content.
A .pwd is not a case file and does not carry a Network.
This structure exposes the display metadata the reader validates plus the
supported drawing object subset.
Fields§
§canvas_width: u16§canvas_height: u16§stamp: u32§substations: Vec<PwdSubstation>Trait Implementations§
Source§impl Clone for PwdDisplay
impl Clone for PwdDisplay
Source§fn clone(&self) -> PwdDisplay
fn clone(&self) -> PwdDisplay
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 PwdDisplay
impl Debug for PwdDisplay
Source§impl PartialEq for PwdDisplay
impl PartialEq for PwdDisplay
impl StructuralPartialEq for PwdDisplay
Auto Trait Implementations§
impl Freeze for PwdDisplay
impl RefUnwindSafe for PwdDisplay
impl Send for PwdDisplay
impl Sync for PwdDisplay
impl Unpin for PwdDisplay
impl UnsafeUnpin for PwdDisplay
impl UnwindSafe for PwdDisplay
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