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