[][src]Struct ovrt_sys::types::OVROverlayTransform

pub struct OVROverlayTransform {
    pub pos: Pos,
    pub rot: Rot,
    pub size: f64,
    pub opacity: f64,
    pub curvature: f64,
    pub framerate: i32,
    pub eco_mode: bool,
    pub look_hiding: bool,
    pub attached_device: i32,
    pub should_save: bool,
}

OVROverlayTransform.

Fields

pos: Pos

Position of window.

rot: Rot

rotation of window (EulerAngles).

size: f64

Size of window (In meters).

opacity: f64

Opacity of window.

curvature: f64

Curvature of window.

framerate: i32

Framerate of window.

eco_mode: bool

Eco mode enabled or disabled.

look_hiding: bool

Look hiding enabled or disabled.

attached_device: i32

Device window is attached to.

should_save: bool

If overlay should save and automatically re-open next program start.

Trait Implementations

impl Clone for OVROverlayTransform[src]

impl Debug for OVROverlayTransform[src]

impl Default for OVROverlayTransform[src]

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

impl PartialEq<OVROverlayTransform> for OVROverlayTransform[src]

impl PartialOrd<OVROverlayTransform> for OVROverlayTransform[src]

impl Serialize for OVROverlayTransform[src]

impl StructuralPartialEq for OVROverlayTransform[src]

Auto Trait Implementations

impl RefUnwindSafe for OVROverlayTransform

impl Send for OVROverlayTransform

impl Sync for OVROverlayTransform

impl Unpin for OVROverlayTransform

impl UnwindSafe for OVROverlayTransform

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.