#[non_exhaustive]
pub enum DrawMode {
Corner,
Center,
}Expand description
Drawing mode which changes how (x, y) coordinates are interpreted.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Corner
Use (x, y) as the top-left corner. Default.
Center
Use (x, y) as the center.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for DrawMode
impl<'de> Deserialize<'de> for DrawMode
sourcefn 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
impl Copy for DrawMode
impl Eq for DrawMode
impl StructuralEq for DrawMode
impl StructuralPartialEq for DrawMode
Auto Trait Implementations
impl RefUnwindSafe for DrawMode
impl Send for DrawMode
impl Sync for DrawMode
impl Unpin for DrawMode
impl UnwindSafe for DrawMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more