pub struct Property {
pub node_type: String,
pub key: String,
pub value: Expression,
pub location: SourceLocation,
}Fields§
§node_type: String§key: String§value: Expression§location: SourceLocationImplementations§
Source§impl Property
impl Property
pub fn new(key: String, value: Expression, location: SourceLocation) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
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