pub struct EmptyArrayLit {
pub open_bracket: OpenBracket,
pub close_bracket: CloseBracket,
}
Expand description
Represents [ ]
Fields§
§open_bracket: OpenBracket
§close_bracket: CloseBracket
Trait Implementations§
Source§impl Clone for EmptyArrayLit
impl Clone for EmptyArrayLit
Source§fn clone(&self) -> EmptyArrayLit
fn clone(&self) -> EmptyArrayLit
Returns a copy 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 EmptyArrayLit
impl Debug for EmptyArrayLit
Source§impl Default for EmptyArrayLit
impl Default for EmptyArrayLit
Source§fn default() -> EmptyArrayLit
fn default() -> EmptyArrayLit
Returns the “default value” for a type. Read more
Source§impl<'a> From<EmptyArrayLit> for DefaultValue<'a>
impl<'a> From<EmptyArrayLit> for DefaultValue<'a>
Source§fn from(x: EmptyArrayLit) -> Self
fn from(x: EmptyArrayLit) -> Self
Converts to this type from the input type.
Source§impl Hash for EmptyArrayLit
impl Hash for EmptyArrayLit
Source§impl Ord for EmptyArrayLit
impl Ord for EmptyArrayLit
Source§fn cmp(&self, other: &EmptyArrayLit) -> Ordering
fn cmp(&self, other: &EmptyArrayLit) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for EmptyArrayLit
impl<'a> Parse<'a> for EmptyArrayLit
Source§impl PartialEq for EmptyArrayLit
impl PartialEq for EmptyArrayLit
Source§impl PartialOrd for EmptyArrayLit
impl PartialOrd for EmptyArrayLit
impl Copy for EmptyArrayLit
impl Eq for EmptyArrayLit
impl StructuralPartialEq for EmptyArrayLit
Auto Trait Implementations§
impl Freeze for EmptyArrayLit
impl RefUnwindSafe for EmptyArrayLit
impl Send for EmptyArrayLit
impl Sync for EmptyArrayLit
impl Unpin for EmptyArrayLit
impl UnwindSafe for EmptyArrayLit
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