pub struct FutharkArrayLiteral {
pub elements: Vec<String>,
pub element_type: FutharkType,
}Expand description
Array literal in Futhark
Fields§
§elements: Vec<String>§element_type: FutharkTypeTrait Implementations§
Source§impl Clone for FutharkArrayLiteral
impl Clone for FutharkArrayLiteral
Source§fn clone(&self) -> FutharkArrayLiteral
fn clone(&self) -> FutharkArrayLiteral
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 FutharkArrayLiteral
impl Debug for FutharkArrayLiteral
Auto Trait Implementations§
impl Freeze for FutharkArrayLiteral
impl RefUnwindSafe for FutharkArrayLiteral
impl Send for FutharkArrayLiteral
impl Sync for FutharkArrayLiteral
impl Unpin for FutharkArrayLiteral
impl UnsafeUnpin for FutharkArrayLiteral
impl UnwindSafe for FutharkArrayLiteral
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