pub enum ParticipantShape {
Rectangle,
RoundedRect,
Circle,
}Expand description
Participant box shape
Variants§
Rectangle
Rectangle with square corners
RoundedRect
Rectangle with rounded corners
Circle
Circle/ellipse
Trait Implementations§
Source§impl Clone for ParticipantShape
impl Clone for ParticipantShape
Source§fn clone(&self) -> ParticipantShape
fn clone(&self) -> ParticipantShape
Returns a duplicate of the value. Read more
1.0.0 · 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 ParticipantShape
impl Debug for ParticipantShape
Source§impl Default for ParticipantShape
impl Default for ParticipantShape
Source§fn default() -> ParticipantShape
fn default() -> ParticipantShape
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParticipantShape
impl PartialEq for ParticipantShape
impl Copy for ParticipantShape
impl Eq for ParticipantShape
impl StructuralPartialEq for ParticipantShape
Auto Trait Implementations§
impl Freeze for ParticipantShape
impl RefUnwindSafe for ParticipantShape
impl Send for ParticipantShape
impl Sync for ParticipantShape
impl Unpin for ParticipantShape
impl UnwindSafe for ParticipantShape
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