pub struct PerformInOutBinding {
pub direction: InOut,
pub name: String,
pub value: Node<Expression>,
}Expand description
In/out binding inside a perform body: in name = expr ; or out name = expr ;.
Fields§
§direction: InOut§name: String§value: Node<Expression>Trait Implementations§
Source§impl Clone for PerformInOutBinding
impl Clone for PerformInOutBinding
Source§fn clone(&self) -> PerformInOutBinding
fn clone(&self) -> PerformInOutBinding
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 PerformInOutBinding
impl Debug for PerformInOutBinding
Source§impl PartialEq for PerformInOutBinding
impl PartialEq for PerformInOutBinding
Source§fn eq(&self, other: &PerformInOutBinding) -> bool
fn eq(&self, other: &PerformInOutBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PerformInOutBinding
impl StructuralPartialEq for PerformInOutBinding
Auto Trait Implementations§
impl Freeze for PerformInOutBinding
impl RefUnwindSafe for PerformInOutBinding
impl Send for PerformInOutBinding
impl Sync for PerformInOutBinding
impl Unpin for PerformInOutBinding
impl UnsafeUnpin for PerformInOutBinding
impl UnwindSafe for PerformInOutBinding
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