pub struct FutharkSliceExpr {
pub array: String,
pub start: Option<String>,
pub end: Option<String>,
pub stride: Option<String>,
}Expand description
Futhark slice expression
Fields§
§array: String§start: Option<String>§end: Option<String>§stride: Option<String>Trait Implementations§
Source§impl Clone for FutharkSliceExpr
impl Clone for FutharkSliceExpr
Source§fn clone(&self) -> FutharkSliceExpr
fn clone(&self) -> FutharkSliceExpr
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 FutharkSliceExpr
impl Debug for FutharkSliceExpr
Auto Trait Implementations§
impl Freeze for FutharkSliceExpr
impl RefUnwindSafe for FutharkSliceExpr
impl Send for FutharkSliceExpr
impl Sync for FutharkSliceExpr
impl Unpin for FutharkSliceExpr
impl UnsafeUnpin for FutharkSliceExpr
impl UnwindSafe for FutharkSliceExpr
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