#[repr(C)]pub struct ArrayAccess {
pub array: Box<Expression>,
pub left_bracket: Span,
pub index: Box<Expression>,
pub right_bracket: Span,
}Fields§
§array: Box<Expression>§left_bracket: Span§index: Box<Expression>§right_bracket: SpanTrait Implementations§
Source§impl Clone for ArrayAccess
impl Clone for ArrayAccess
Source§fn clone(&self) -> ArrayAccess
fn clone(&self) -> ArrayAccess
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 ArrayAccess
impl Debug for ArrayAccess
Source§impl<'de> Deserialize<'de> for ArrayAccess
impl<'de> Deserialize<'de> for ArrayAccess
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl HasSpan for ArrayAccess
impl HasSpan for ArrayAccess
Source§impl Hash for ArrayAccess
impl Hash for ArrayAccess
Source§impl Ord for ArrayAccess
impl Ord for ArrayAccess
Source§fn cmp(&self, other: &ArrayAccess) -> Ordering
fn cmp(&self, other: &ArrayAccess) -> 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 PartialEq for ArrayAccess
impl PartialEq for ArrayAccess
Source§impl PartialOrd for ArrayAccess
impl PartialOrd for ArrayAccess
Source§impl Serialize for ArrayAccess
impl Serialize for ArrayAccess
impl Eq for ArrayAccess
impl StructuralPartialEq for ArrayAccess
Auto Trait Implementations§
impl Freeze for ArrayAccess
impl RefUnwindSafe for ArrayAccess
impl Send for ArrayAccess
impl Sync for ArrayAccess
impl Unpin for ArrayAccess
impl UnwindSafe for ArrayAccess
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