pub struct WireHarnessState {
pub connections: Vec<WireHarnessConnection>,
pub id_counter: u64,
pub build_bundles: bool,
}Expand description
The document’s wireHarness block.
Fields§
§connections: Vec<WireHarnessConnection>§id_counter: u64Monotonic id counter (wire-{n}), never reused.
build_bundles: boolBuild the bundle solids (default true). Off keeps the routing and the report but registers no solids.
Implementations§
Trait Implementations§
Source§impl Clone for WireHarnessState
impl Clone for WireHarnessState
Source§fn clone(&self) -> WireHarnessState
fn clone(&self) -> WireHarnessState
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 WireHarnessState
impl Debug for WireHarnessState
Source§impl Default for WireHarnessState
impl Default for WireHarnessState
Source§impl<'de> Deserialize<'de> for WireHarnessState
impl<'de> Deserialize<'de> for WireHarnessState
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
Source§impl PartialEq for WireHarnessState
impl PartialEq for WireHarnessState
Source§impl Serialize for WireHarnessState
impl Serialize for WireHarnessState
impl StructuralPartialEq for WireHarnessState
Auto Trait Implementations§
impl Freeze for WireHarnessState
impl RefUnwindSafe for WireHarnessState
impl Send for WireHarnessState
impl Sync for WireHarnessState
impl Unpin for WireHarnessState
impl UnsafeUnpin for WireHarnessState
impl UnwindSafe for WireHarnessState
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