#[non_exhaustive]pub struct NeutralKronBus {
pub bus: String,
pub neutral_terminal: String,
pub source_position: usize,
pub grounding: NeutralKronGrounding,
}Expand description
One eliminated bus terminal.
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.bus: String§neutral_terminal: String§source_position: usizePosition in the bus’s terminal order before reduction.
grounding: NeutralKronGroundingTrait Implementations§
Source§impl Clone for NeutralKronBus
impl Clone for NeutralKronBus
Source§fn clone(&self) -> NeutralKronBus
fn clone(&self) -> NeutralKronBus
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 NeutralKronBus
impl Debug for NeutralKronBus
Source§impl<'de> Deserialize<'de> for NeutralKronBus
impl<'de> Deserialize<'de> for NeutralKronBus
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
impl Eq for NeutralKronBus
Source§impl PartialEq for NeutralKronBus
impl PartialEq for NeutralKronBus
Source§fn eq(&self, other: &NeutralKronBus) -> bool
fn eq(&self, other: &NeutralKronBus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NeutralKronBus
impl Serialize for NeutralKronBus
impl StructuralPartialEq for NeutralKronBus
Auto Trait Implementations§
impl Freeze for NeutralKronBus
impl RefUnwindSafe for NeutralKronBus
impl Send for NeutralKronBus
impl Sync for NeutralKronBus
impl Unpin for NeutralKronBus
impl UnsafeUnpin for NeutralKronBus
impl UnwindSafe for NeutralKronBus
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