pub struct MaskPosition {
pub point: MaskPoint,
pub x_shift: f64,
pub y_shift: f64,
pub scale: f64,
}Expand description
The position of a mask sticker on a face.
Fields§
§point: MaskPointThe part of the face where the mask is placed.
x_shift: f64Shift by X-axis measured in widths of the mask, scaled to the face size.
y_shift: f64Shift by Y-axis measured in heights of the mask, scaled to the face size.
scale: f64Mask scaling coefficient.
Trait Implementations§
Source§impl Clone for MaskPosition
impl Clone for MaskPosition
Source§fn clone(&self) -> MaskPosition
fn clone(&self) -> MaskPosition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MaskPosition
impl Debug for MaskPosition
Source§impl<'de> Deserialize<'de> for MaskPosition
impl<'de> Deserialize<'de> for MaskPosition
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
Auto Trait Implementations§
impl Freeze for MaskPosition
impl RefUnwindSafe for MaskPosition
impl Send for MaskPosition
impl Sync for MaskPosition
impl Unpin for MaskPosition
impl UnsafeUnpin for MaskPosition
impl UnwindSafe for MaskPosition
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