[][src]Struct tgbot::types::MaskPosition

pub struct MaskPosition {
    pub point: MaskPositionPoint,
    pub x_shift: Float,
    pub y_shift: Float,
    pub scale: Float,
}

Position on faces where a mask should be placed by default

Fields

point: MaskPositionPoint

The part of the face relative to which the mask should be placed

x_shift: Float

Shift by X-axis measured in widths of the mask scaled to the face size, from left to right. For example, choosing -1.0 will place mask just to the left of the default mask position

y_shift: Float

Shift by Y-axis measured in heights of the mask scaled to the face size, from top to bottom. For example, 1.0 will place the mask just below the default mask position

scale: Float

Mask scaling coefficient. For example, 2.0 means double size

Trait Implementations

impl Clone for MaskPosition[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for MaskPosition[src]

impl Serialize for MaskPosition[src]

impl<'de> Deserialize<'de> for MaskPosition[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T