pub struct RemovePropItem {
pub target: VarId,
pub prop: PropId,
pub prop_name: String,
}Expand description
A single REMOVE n.prop deletion, as bound from a REMOVE clause (#791).
Label removals are represented separately by LabelItem.
Fields§
§target: VarIdThe bound variable whose property is removed.
prop: PropIdThe property, resolved to a PropId.
prop_name: StringThe property name (see SetPropItem::prop_name).
Trait Implementations§
Source§impl Clone for RemovePropItem
impl Clone for RemovePropItem
Source§fn clone(&self) -> RemovePropItem
fn clone(&self) -> RemovePropItem
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 RemovePropItem
impl Debug for RemovePropItem
Source§impl<'de> Deserialize<'de> for RemovePropItem
impl<'de> Deserialize<'de> for RemovePropItem
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 PartialEq for RemovePropItem
impl PartialEq for RemovePropItem
Source§impl Serialize for RemovePropItem
impl Serialize for RemovePropItem
impl StructuralPartialEq for RemovePropItem
Auto Trait Implementations§
impl Freeze for RemovePropItem
impl RefUnwindSafe for RemovePropItem
impl Send for RemovePropItem
impl Sync for RemovePropItem
impl Unpin for RemovePropItem
impl UnsafeUnpin for RemovePropItem
impl UnwindSafe for RemovePropItem
Blanket Implementations§
impl<T> Allocation for T
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