pub struct FutharkLetBinding {
pub pattern: String,
pub type_ann: Option<FutharkType>,
pub value: String,
pub body: String,
}Expand description
Futhark let binding
Fields§
§pattern: String§type_ann: Option<FutharkType>§value: String§body: StringTrait Implementations§
Source§impl Clone for FutharkLetBinding
impl Clone for FutharkLetBinding
Source§fn clone(&self) -> FutharkLetBinding
fn clone(&self) -> FutharkLetBinding
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 FutharkLetBinding
impl Debug for FutharkLetBinding
Auto Trait Implementations§
impl Freeze for FutharkLetBinding
impl RefUnwindSafe for FutharkLetBinding
impl Send for FutharkLetBinding
impl Sync for FutharkLetBinding
impl Unpin for FutharkLetBinding
impl UnsafeUnpin for FutharkLetBinding
impl UnwindSafe for FutharkLetBinding
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