Struct rbx_types::Vector3int16[][src]

pub struct Vector3int16 {
    pub x: i16,
    pub y: i16,
    pub z: i16,
}

A version of Vector3 whose coordinates are signed 16-bit integers. Vector3int16 is often used when working with Terrain.

See Also

Fields

x: i16y: i16z: i16

Implementations

impl Vector3int16[src]

pub fn new(x: i16, y: i16, z: i16) -> Self[src]

Trait Implementations

impl Clone for Vector3int16[src]

impl Copy for Vector3int16[src]

impl Debug for Vector3int16[src]

impl Eq for Vector3int16[src]

impl From<Vector3int16> for Variant[src]

impl PartialEq<Vector3int16> for Vector3int16[src]

impl StructuralEq for Vector3int16[src]

impl StructuralPartialEq for Vector3int16[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> 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>,