pub struct OutAssignment {
pub index: u32,
pub value: Expr,
pub span: Option<Span>,
}Expand description
Output assignment: out[0] = osc;
Fields§
§index: u32§value: Expr§span: Option<Span>Trait Implementations§
Source§impl Clone for OutAssignment
impl Clone for OutAssignment
Source§fn clone(&self) -> OutAssignment
fn clone(&self) -> OutAssignment
Returns a duplicate of the value. Read more
1.0.0 · 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 OutAssignment
impl Debug for OutAssignment
Source§impl PartialEq for OutAssignment
impl PartialEq for OutAssignment
impl StructuralPartialEq for OutAssignment
Auto Trait Implementations§
impl Freeze for OutAssignment
impl RefUnwindSafe for OutAssignment
impl Send for OutAssignment
impl Sync for OutAssignment
impl Unpin for OutAssignment
impl UnsafeUnpin for OutAssignment
impl UnwindSafe for OutAssignment
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