pub enum RingPlacement {
Inset,
Outset,
}Variants§
Inset
Draw the ring inside the element bounds.
Outset
Draw the ring outside the element bounds (best effort; may be clipped by parent clips).
Trait Implementations§
Source§impl Clone for RingPlacement
impl Clone for RingPlacement
Source§fn clone(&self) -> RingPlacement
fn clone(&self) -> RingPlacement
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 RingPlacement
impl Debug for RingPlacement
Source§impl Default for RingPlacement
impl Default for RingPlacement
Source§fn default() -> RingPlacement
fn default() -> RingPlacement
Returns the “default value” for a type. Read more
Source§impl PartialEq for RingPlacement
impl PartialEq for RingPlacement
impl Copy for RingPlacement
impl Eq for RingPlacement
impl StructuralPartialEq for RingPlacement
Auto Trait Implementations§
impl Freeze for RingPlacement
impl RefUnwindSafe for RingPlacement
impl Send for RingPlacement
impl Sync for RingPlacement
impl Unpin for RingPlacement
impl UnsafeUnpin for RingPlacement
impl UnwindSafe for RingPlacement
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