pub struct OutDecl {
pub index: u32,
pub name: String,
pub port_type: PortType,
pub value: Option<Expr>,
}Expand description
Output port declaration: out 0 (audio): signal; or out audio: signal = expr;
Fields§
§index: u32§name: String§port_type: PortType§value: Option<Expr>Trait Implementations§
impl StructuralPartialEq for OutDecl
Auto Trait Implementations§
impl Freeze for OutDecl
impl RefUnwindSafe for OutDecl
impl Send for OutDecl
impl Sync for OutDecl
impl Unpin for OutDecl
impl UnsafeUnpin for OutDecl
impl UnwindSafe for OutDecl
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