pub struct PropertyExpression {
pub object: Box<Expression>,
pub property: IDENTIFIER,
pub span: Span,
}Fields§
§object: Box<Expression>§property: IDENTIFIER§span: SpanTrait Implementations§
Source§impl Clone for PropertyExpression
impl Clone for PropertyExpression
Source§fn clone(&self) -> PropertyExpression
fn clone(&self) -> PropertyExpression
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 Debug for PropertyExpression
impl Debug for PropertyExpression
Source§impl<'de> Deserialize<'de> for PropertyExpression
impl<'de> Deserialize<'de> for PropertyExpression
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
impl Eq for PropertyExpression
Source§impl Hash for PropertyExpression
impl Hash for PropertyExpression
Source§impl PartialEq for PropertyExpression
impl PartialEq for PropertyExpression
Source§impl Serialize for PropertyExpression
impl Serialize for PropertyExpression
impl StructuralPartialEq for PropertyExpression
Auto Trait Implementations§
impl Freeze for PropertyExpression
impl RefUnwindSafe for PropertyExpression
impl Send for PropertyExpression
impl Sync for PropertyExpression
impl Unpin for PropertyExpression
impl UnsafeUnpin for PropertyExpression
impl UnwindSafe for PropertyExpression
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