pub struct FutharkLoop {
pub kind: FutharkLoopKind,
pub params: Vec<(String, FutharkType, String)>,
pub body: String,
}Expand description
Futhark loop expression
Fields§
§kind: FutharkLoopKind§params: Vec<(String, FutharkType, String)>§body: StringTrait Implementations§
Source§impl Clone for FutharkLoop
impl Clone for FutharkLoop
Source§fn clone(&self) -> FutharkLoop
fn clone(&self) -> FutharkLoop
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 FutharkLoop
impl Debug for FutharkLoop
Auto Trait Implementations§
impl Freeze for FutharkLoop
impl RefUnwindSafe for FutharkLoop
impl Send for FutharkLoop
impl Sync for FutharkLoop
impl Unpin for FutharkLoop
impl UnsafeUnpin for FutharkLoop
impl UnwindSafe for FutharkLoop
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