pub struct Array {
pub expand: bool,
pub elements: Vec<Entry>,
}
Expand description
An array of entries
Fields§
§expand: bool
Is the array expanding a previously defined array
my_array[] += {1,2,3};
elements: Vec<Entry>
The elements of the array
Trait Implementations§
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
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