[][src]Struct rbx_types::Faces

pub struct Faces { /* fields omitted */ }

Represents a set of zero or more faces of a cube.

See Also

Methods

impl Faces[src]

pub const RIGHT: Self[src]

pub const TOP: Self[src]

pub const BACK: Self[src]

pub const LEFT: Self[src]

pub const BOTTOM: Self[src]

pub const FRONT: Self[src]

impl Faces[src]

pub const fn empty() -> Self[src]

pub const fn all() -> Self[src]

pub const fn contains(self, other: Self) -> bool[src]

pub const fn bits(self) -> u8[src]

pub fn from_bits(bits: u8) -> Option<Self>[src]

Trait Implementations

impl Clone for Faces[src]

impl Copy for Faces[src]

impl Debug for Faces[src]

impl Eq for Faces[src]

impl From<Faces> for Variant[src]

impl PartialEq<Faces> for Faces[src]

impl StructuralEq for Faces[src]

impl StructuralPartialEq for Faces[src]

Auto Trait Implementations

impl RefUnwindSafe for Faces

impl Send for Faces

impl Sync for Faces

impl Unpin for Faces

impl UnwindSafe for Faces

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,