pub struct DrawableShape { /* private fields */ }Expand description
A shape with associated drawing properties for canvas rendering.
Combines geometric shape information with visual styling properties to create drawable annotations.
Typically this is constructed during the process of tracking and sent to the client for rendering.
Implementations§
Source§impl DrawableShape
impl DrawableShape
Sourcepub fn from_shape(
shape: &Shape,
stroke_style: &StrokeStyle,
line_width: f32,
) -> Self
pub fn from_shape( shape: &Shape, stroke_style: &StrokeStyle, line_width: f32, ) -> Self
Creates a new drawable shape from a geometric shape and styling properties.
Trait Implementations§
Source§impl Clone for DrawableShape
impl Clone for DrawableShape
Source§fn clone(&self) -> DrawableShape
fn clone(&self) -> DrawableShape
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 DrawableShape
impl Debug for DrawableShape
Source§impl<'de> Deserialize<'de> for DrawableShape
impl<'de> Deserialize<'de> for DrawableShape
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<DrawableShape> for CanvasDrawableShape
impl From<DrawableShape> for CanvasDrawableShape
Source§fn from(orig: DrawableShape) -> CanvasDrawableShape
fn from(orig: DrawableShape) -> CanvasDrawableShape
Converts a DrawableShape to a CanvasDrawableShape.
This conversion prepares the shape for use in canvas rendering contexts by converting the structured stroke style to a CSS string.
Source§impl PartialEq for DrawableShape
impl PartialEq for DrawableShape
Source§impl Serialize for DrawableShape
impl Serialize for DrawableShape
impl StructuralPartialEq for DrawableShape
Auto Trait Implementations§
impl Freeze for DrawableShape
impl RefUnwindSafe for DrawableShape
impl Send for DrawableShape
impl Sync for DrawableShape
impl Unpin for DrawableShape
impl UnsafeUnpin for DrawableShape
impl UnwindSafe for DrawableShape
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