#[repr(i32)]pub enum STROKE_PLACEMENT {
INSIDE = 10,
CENTER = 11,
OUTSIDE = 12,
}Expand description
Placement of stroke relative to the element boundary.
Variants§
INSIDE = 10
Places the stroke inside the element’s boundary.
CENTER = 11
Centers the stroke on the element’s boundary.
OUTSIDE = 12
Places the stroke outside the element’s boundary.
Trait Implementations§
Source§impl Clone for STROKE_PLACEMENT
impl Clone for STROKE_PLACEMENT
Source§fn clone(&self) -> STROKE_PLACEMENT
fn clone(&self) -> STROKE_PLACEMENT
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 STROKE_PLACEMENT
impl Debug for STROKE_PLACEMENT
Source§impl<'de> Deserialize<'de> for STROKE_PLACEMENT
impl<'de> Deserialize<'de> for STROKE_PLACEMENT
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 Hash for STROKE_PLACEMENT
impl Hash for STROKE_PLACEMENT
Source§impl PartialEq for STROKE_PLACEMENT
impl PartialEq for STROKE_PLACEMENT
Source§impl Serialize for STROKE_PLACEMENT
impl Serialize for STROKE_PLACEMENT
impl Copy for STROKE_PLACEMENT
impl Eq for STROKE_PLACEMENT
impl StructuralPartialEq for STROKE_PLACEMENT
Auto Trait Implementations§
impl Freeze for STROKE_PLACEMENT
impl RefUnwindSafe for STROKE_PLACEMENT
impl Send for STROKE_PLACEMENT
impl Sync for STROKE_PLACEMENT
impl Unpin for STROKE_PLACEMENT
impl UnsafeUnpin for STROKE_PLACEMENT
impl UnwindSafe for STROKE_PLACEMENT
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