pub enum ElementShape {
Component,
InlineMarker,
}Expand description
Marker shape used by the document.
Variants§
Component
Bounded region: <!-- agent:name -->...<!-- /agent:name -->.
InlineMarker
Single marker inside another component, such as an exchange boundary.
Trait Implementations§
Source§impl Clone for ElementShape
impl Clone for ElementShape
Source§fn clone(&self) -> ElementShape
fn clone(&self) -> ElementShape
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 moreimpl Copy for ElementShape
Source§impl Debug for ElementShape
impl Debug for ElementShape
impl Eq for ElementShape
Source§impl PartialEq for ElementShape
impl PartialEq for ElementShape
Source§fn eq(&self, other: &ElementShape) -> bool
fn eq(&self, other: &ElementShape) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ElementShape
Auto Trait Implementations§
impl Freeze for ElementShape
impl RefUnwindSafe for ElementShape
impl Send for ElementShape
impl Sync for ElementShape
impl Unpin for ElementShape
impl UnsafeUnpin for ElementShape
impl UnwindSafe for ElementShape
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