pub struct CircleShape {
    pub center: Pos2,
    pub radius: f32,
    pub fill: Color32,
    pub stroke: Stroke,
}Expand description
How to paint a circle.
Fields§
§center: Pos2§radius: f32§fill: Color32§stroke: StrokeImplementations§
Trait Implementations§
Source§impl Clone for CircleShape
 
impl Clone for CircleShape
Source§fn clone(&self) -> CircleShape
 
fn clone(&self) -> CircleShape
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 CircleShape
 
impl Debug for CircleShape
Source§impl<'de> Deserialize<'de> for CircleShape
 
impl<'de> Deserialize<'de> for CircleShape
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 From<CircleShape> for Shape
 
impl From<CircleShape> for Shape
Source§fn from(shape: CircleShape) -> Self
 
fn from(shape: CircleShape) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CircleShape
 
impl PartialEq for CircleShape
Source§impl Serialize for CircleShape
 
impl Serialize for CircleShape
impl Copy for CircleShape
impl StructuralPartialEq for CircleShape
Auto Trait Implementations§
impl Freeze for CircleShape
impl RefUnwindSafe for CircleShape
impl Send for CircleShape
impl Sync for CircleShape
impl Unpin for CircleShape
impl UnwindSafe for CircleShape
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