pub enum RingContents {
Outer(Rect),
Inner(Rect),
}
Expand description
Represents the ways Ring
geometry can be specified.
Variants§
Outer(Rect)
The ring must fit within the given rectangle.
Inner(Rect)
The ring must enclose the given rectangle.
Implementations§
Source§impl RingContents
impl RingContents
Trait Implementations§
Source§impl Clone for RingContents
impl Clone for RingContents
Source§fn clone(&self) -> RingContents
fn clone(&self) -> RingContents
Returns a copy 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 RingContents
impl Debug for RingContents
Source§impl<'de> Deserialize<'de> for RingContents
impl<'de> Deserialize<'de> for RingContents
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for RingContents
impl Ord for RingContents
Source§fn cmp(&self, other: &RingContents) -> Ordering
fn cmp(&self, other: &RingContents) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RingContents
impl PartialEq for RingContents
Source§impl PartialOrd for RingContents
impl PartialOrd for RingContents
Source§impl Serialize for RingContents
impl Serialize for RingContents
impl Copy for RingContents
impl Eq for RingContents
impl StructuralPartialEq for RingContents
Auto Trait Implementations§
impl Freeze for RingContents
impl RefUnwindSafe for RingContents
impl Send for RingContents
impl Sync for RingContents
impl Unpin for RingContents
impl UnwindSafe for RingContents
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