pub struct InputUpdate(pub BTreeMap<String, PortValue>);Expand description
Set of inputs to apply (partial updates allowed).
Tuple Fields§
§0: BTreeMap<String, PortValue>Implementations§
Trait Implementations§
Source§impl Clone for InputUpdate
impl Clone for InputUpdate
Source§fn clone(&self) -> InputUpdate
fn clone(&self) -> InputUpdate
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 InputUpdate
impl Debug for InputUpdate
Source§impl Default for InputUpdate
impl Default for InputUpdate
Source§fn default() -> InputUpdate
fn default() -> InputUpdate
Returns the “default value” for a type. Read more
Source§impl PartialEq for InputUpdate
impl PartialEq for InputUpdate
Source§fn eq(&self, other: &InputUpdate) -> bool
fn eq(&self, other: &InputUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InputUpdate
Auto Trait Implementations§
impl Freeze for InputUpdate
impl RefUnwindSafe for InputUpdate
impl Send for InputUpdate
impl Sync for InputUpdate
impl Unpin for InputUpdate
impl UnsafeUnpin for InputUpdate
impl UnwindSafe for InputUpdate
Blanket Implementations§
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more