pub enum InterfaceUsageBodyElement {
RefRedef {
name: String,
value: Node<Expression>,
body: RefBody,
},
}Expand description
Element in interface usage body (e.g. ref redefinition).
Variants§
Trait Implementations§
Source§impl Clone for InterfaceUsageBodyElement
impl Clone for InterfaceUsageBodyElement
Source§fn clone(&self) -> InterfaceUsageBodyElement
fn clone(&self) -> InterfaceUsageBodyElement
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 InterfaceUsageBodyElement
impl Debug for InterfaceUsageBodyElement
impl Eq for InterfaceUsageBodyElement
Source§impl PartialEq for InterfaceUsageBodyElement
impl PartialEq for InterfaceUsageBodyElement
Source§fn eq(&self, other: &InterfaceUsageBodyElement) -> bool
fn eq(&self, other: &InterfaceUsageBodyElement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InterfaceUsageBodyElement
Auto Trait Implementations§
impl Freeze for InterfaceUsageBodyElement
impl RefUnwindSafe for InterfaceUsageBodyElement
impl Send for InterfaceUsageBodyElement
impl Sync for InterfaceUsageBodyElement
impl Unpin for InterfaceUsageBodyElement
impl UnsafeUnpin for InterfaceUsageBodyElement
impl UnwindSafe for InterfaceUsageBodyElement
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