Skip to main content

ICameraControllerSelfieMethods

Trait ICameraControllerSelfieMethods 

Source
pub trait ICameraControllerSelfieMethods: ICameraControllerSelfie {
    // Provided methods
    fn get_is_side_inverse(self) -> bool { ... }
    fn set_is_side_inverse(self, value: impl Into<bool>) { ... }
    fn get_is_camera_inverse(self) -> bool { ... }
    fn set_is_camera_inverse(self, value: impl Into<bool>) { ... }
    fn get_target_side(self) -> i32 { ... }
    fn activate(self) { ... }
    fn deactivate(self) { ... }
    fn set_inverse(self, inv_side: impl Into<bool>, inv_camera: impl Into<bool>) { ... }
    fn get_camera_targets(self) -> Array<i32> { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_is_side_inverse(self) -> bool

get_IsSideInverse() overload

Source

fn set_is_side_inverse(self, value: impl Into<bool>)

set_IsSideInverse(bool) overload

Source

fn get_is_camera_inverse(self) -> bool

get_IsCameraInverse() overload

Source

fn set_is_camera_inverse(self, value: impl Into<bool>)

set_IsCameraInverse(bool) overload

Source

fn get_target_side(self) -> i32

get_TargetSide() overload

Source

fn activate(self)

Activate() overload

Source

fn deactivate(self)

Deactivate() overload

Source

fn set_inverse(self, inv_side: impl Into<bool>, inv_camera: impl Into<bool>)

SetInverse(bool, bool) overload

Source

fn get_camera_targets(self) -> Array<i32>

GetCameraTargets() overload

Source

fn ctor(self)

.ctor() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: ICameraControllerSelfie> ICameraControllerSelfieMethods for __T

Available on crate feature combat-cameracontrollerselfie only.