Struct teloxide::types::MaskPosition[][src]

pub struct MaskPosition {
    pub point: String,
    pub x_shift: f64,
    pub y_shift: f64,
    pub scale: f64,
}

This object describes the position on faces where a mask should be placed by default.

The official docs.

Fields

point: String

The part of the face relative to which the mask should be placed. One of forehead, eyes, mouth, or chin.

x_shift: f64

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: f64

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: f64

Mask scaling coefficient. For example, 2.0 means double size.

Implementations

impl MaskPosition[src]

pub fn new<S>(point: S, x_shift: f64, y_shift: f64, scale: f64) -> MaskPosition where
    S: Into<String>, 
[src]

pub fn point<S>(self, val: S) -> MaskPosition where
    S: Into<String>, 
[src]

pub fn x_shift(self, val: f64) -> MaskPosition[src]

pub fn y_shift(self, val: f64) -> MaskPosition[src]

pub fn scale(self, val: f64) -> MaskPosition[src]

Trait Implementations

impl Clone for MaskPosition[src]

impl Debug for MaskPosition[src]

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

impl PartialEq<MaskPosition> for MaskPosition[src]

impl Serialize for MaskPosition[src]

impl StructuralPartialEq for MaskPosition[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> Conv for T

impl<T> Conv for T

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

type Remainder = Choices

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

impl<T> FmtForward for T

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

impl<T> Instrument for T[src]

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

impl<T, U, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<Source> Sculptor<HNil, HNil> for Source

type Remainder = Source

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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.