[][src]Struct gltf_json::Camera

pub struct Camera {
    pub orthographic: Option<Orthographic>,
    pub perspective: Option<Perspective>,
    pub type_: Checked<Type>,
    pub extensions: Option<Camera>,
    pub extras: Extras,
}

A camera's projection.

A node can reference a camera to apply a transform to place the camera in the scene.

Fields

orthographic: Option<Orthographic>

An orthographic camera containing properties to create an orthographic projection matrix.

perspective: Option<Perspective>

A perspective camera containing properties to create a perspective projection matrix.

type_: Checked<Type>

Specifies if the camera uses a perspective or orthographic projection.

extensions: Option<Camera>

Extension specific data.

extras: Extras

Optional application specific data.

Trait Implementations

impl Clone for Camera[src]

impl Debug for Camera[src]

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

impl<'a> Get<Camera> for Root[src]

impl Serialize for Camera[src]

impl Validate for Camera[src]

Auto Trait Implementations

impl RefUnwindSafe for Camera

impl Send for Camera

impl Sync for Camera

impl Unpin for Camera

impl UnwindSafe for Camera

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