pub enum RenderingDefBody {
Semicolon,
Brace {
elements: Vec<Node<RenderingDefBodyElement>>,
},
}Variants§
Trait Implementations§
Source§impl Clone for RenderingDefBody
impl Clone for RenderingDefBody
Source§fn clone(&self) -> RenderingDefBody
fn clone(&self) -> RenderingDefBody
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 RenderingDefBody
impl Debug for RenderingDefBody
impl Eq for RenderingDefBody
Source§impl PartialEq for RenderingDefBody
impl PartialEq for RenderingDefBody
Source§fn eq(&self, other: &RenderingDefBody) -> bool
fn eq(&self, other: &RenderingDefBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RenderingDefBody
Auto Trait Implementations§
impl Freeze for RenderingDefBody
impl RefUnwindSafe for RenderingDefBody
impl Send for RenderingDefBody
impl Sync for RenderingDefBody
impl Unpin for RenderingDefBody
impl UnsafeUnpin for RenderingDefBody
impl UnwindSafe for RenderingDefBody
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