pub enum FutharkLoopKind {
For {
var: String,
bound: String,
},
While {
cond: String,
},
ForWhile {
var: String,
bound: String,
cond: String,
},
}Expand description
Futhark loop form
Variants§
Trait Implementations§
Source§impl Clone for FutharkLoopKind
impl Clone for FutharkLoopKind
Source§fn clone(&self) -> FutharkLoopKind
fn clone(&self) -> FutharkLoopKind
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 moreAuto Trait Implementations§
impl Freeze for FutharkLoopKind
impl RefUnwindSafe for FutharkLoopKind
impl Send for FutharkLoopKind
impl Sync for FutharkLoopKind
impl Unpin for FutharkLoopKind
impl UnsafeUnpin for FutharkLoopKind
impl UnwindSafe for FutharkLoopKind
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