pub struct PwdSubstation {
pub number: u32,
pub name: String,
pub x: f64,
pub y: f64,
}Expand description
One substation symbol from a display file: the identity row joined with
its drawing record, in identity table (display) order. x and y are
diagram coordinates as stored, y north positive (see the module docs).
Fields§
§number: u32§name: String§x: f64§y: f64Trait Implementations§
Source§impl Clone for PwdSubstation
impl Clone for PwdSubstation
Source§fn clone(&self) -> PwdSubstation
fn clone(&self) -> PwdSubstation
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 PwdSubstation
impl Debug for PwdSubstation
Source§impl PartialEq for PwdSubstation
impl PartialEq for PwdSubstation
impl StructuralPartialEq for PwdSubstation
Auto Trait Implementations§
impl Freeze for PwdSubstation
impl RefUnwindSafe for PwdSubstation
impl Send for PwdSubstation
impl Sync for PwdSubstation
impl Unpin for PwdSubstation
impl UnsafeUnpin for PwdSubstation
impl UnwindSafe for PwdSubstation
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