pub struct ArrayElements<'t> {
pub value: Value<'t>,
pub array_elements_opt: Option<Box<ArrayElementsOpt<'t>>>,
}Expand description
Type derived for non-terminal ArrayElements
Fields§
§value: Value<'t>§array_elements_opt: Option<Box<ArrayElementsOpt<'t>>>Trait Implementations§
Source§impl<'t> Clone for ArrayElements<'t>
impl<'t> Clone for ArrayElements<'t>
Source§fn clone(&self) -> ArrayElements<'t>
fn clone(&self) -> ArrayElements<'t>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'t> Debug for ArrayElements<'t>
impl<'t> Debug for ArrayElements<'t>
Auto Trait Implementations§
impl<'t> Freeze for ArrayElements<'t>
impl<'t> RefUnwindSafe for ArrayElements<'t>
impl<'t> Send for ArrayElements<'t>
impl<'t> Sync for ArrayElements<'t>
impl<'t> Unpin for ArrayElements<'t>
impl<'t> UnsafeUnpin for ArrayElements<'t>
impl<'t> UnwindSafe for ArrayElements<'t>
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