[][src]Struct openxr::CompositionLayerEquirectKHR

#[repr(transparent)]
pub struct CompositionLayerEquirectKHR<'a, G: Graphics> { /* fields omitted */ }

Methods

impl<'a, G: Graphics> CompositionLayerEquirectKHR<'a, G>[src]

pub fn new() -> Self[src]

pub unsafe fn from_raw(inner: CompositionLayerEquirectKHR) -> Self[src]

Initialize with the supplied raw values

Safety

The guarantees normally enforced by this builder (e.g. lifetimes) must be preserved.

pub fn into_raw(self) -> CompositionLayerEquirectKHR[src]

pub fn as_raw(&self) -> &CompositionLayerEquirectKHR[src]

pub fn layer_flags(self, value: CompositionLayerFlags) -> Self[src]

pub fn space(self, value: &'a Space) -> Self[src]

pub fn eye_visibility(self, value: EyeVisibility) -> Self[src]

pub fn sub_image(self, value: SwapchainSubImage<'a, G>) -> Self[src]

pub fn pose(self, value: Posef) -> Self[src]

pub fn offset(self, value: Vector3f) -> Self[src]

pub fn scale(self, value: Vector2f) -> Self[src]

pub fn bias(self, value: Vector2f) -> Self[src]

Trait Implementations

impl<'a, G: Copy + Graphics> Copy for CompositionLayerEquirectKHR<'a, G>[src]

impl<'a, G: Clone + Graphics> Clone for CompositionLayerEquirectKHR<'a, G>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, G: Graphics> Deref for CompositionLayerEquirectKHR<'a, G>[src]

type Target = CompositionLayerBase<'a, G>

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, G> !Send for CompositionLayerEquirectKHR<'a, G>

impl<'a, G> !Sync for CompositionLayerEquirectKHR<'a, G>

Blanket Implementations

impl<T, U> Into 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> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,