[][src]Enum yy_typings::sprite::BBoxMode

#[repr(u8)]pub enum BBoxMode {
    Automatic,
    FullImage,
    Manual,
}

Variants

Automatic
FullImage
Manual

Trait Implementations

impl Clone for BBoxMode[src]

impl Copy for BBoxMode[src]

impl Debug for BBoxMode[src]

impl Default for BBoxMode[src]

fn default() -> Self[src]

Return BBoxMode::Automatic

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

impl Eq for BBoxMode[src]

impl Ord for BBoxMode[src]

impl PartialEq<BBoxMode> for BBoxMode[src]

impl PartialOrd<BBoxMode> for BBoxMode[src]

impl Serialize for BBoxMode[src]

impl StructuralEq for BBoxMode[src]

impl StructuralPartialEq for BBoxMode[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,