pub struct RawProp {
pub name: Option<String>,
pub value: Value,
}Expand description
One property assignment as applied to an object, in application order.
Fields§
§name: Option<String>Canonical property name when resolved against the class table;
the name as written when the class or property is unknown; None
for a positional value on an unknown class.
value: ValueTrait Implementations§
impl StructuralPartialEq for RawProp
Auto Trait Implementations§
impl Freeze for RawProp
impl RefUnwindSafe for RawProp
impl Send for RawProp
impl Sync for RawProp
impl Unpin for RawProp
impl UnsafeUnpin for RawProp
impl UnwindSafe for RawProp
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