pub struct ConnectStmt {
pub from: Node<Expression>,
pub to: Node<Expression>,
pub body: ConnectBody,
}Expand description
Connect statement in interface def or usage: connect from to to body.
Fields§
§from: Node<Expression>§to: Node<Expression>§body: ConnectBodyTrait Implementations§
Source§impl Clone for ConnectStmt
impl Clone for ConnectStmt
Source§fn clone(&self) -> ConnectStmt
fn clone(&self) -> ConnectStmt
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 ConnectStmt
impl Debug for ConnectStmt
impl Eq for ConnectStmt
Source§impl PartialEq for ConnectStmt
impl PartialEq for ConnectStmt
Source§fn eq(&self, other: &ConnectStmt) -> bool
fn eq(&self, other: &ConnectStmt) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectStmt
Auto Trait Implementations§
impl Freeze for ConnectStmt
impl RefUnwindSafe for ConnectStmt
impl Send for ConnectStmt
impl Sync for ConnectStmt
impl Unpin for ConnectStmt
impl UnsafeUnpin for ConnectStmt
impl UnwindSafe for ConnectStmt
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