pub struct AddNode<I1, I2, O>{
pub input_1: Input<I1>,
pub input_2: Input<I2>,
pub output_1: Output<O>,
/* private fields */
}
Fields§
§input_1: Input<I1>
§input_2: Input<I2>
§output_1: Output<O>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<I1, I2, O> Freeze for AddNode<I1, I2, O>
impl<I1, I2, O> RefUnwindSafe for AddNode<I1, I2, O>
impl<I1, I2, O> Send for AddNode<I1, I2, O>
impl<I1, I2, O> !Sync for AddNode<I1, I2, O>
impl<I1, I2, O> Unpin for AddNode<I1, I2, O>
impl<I1, I2, O> UnwindSafe for AddNode<I1, I2, O>
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