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 copy of the value. Read more
1.6.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more