Skip to main content

IAnimalCatchSequenceMethods

Trait IAnimalCatchSequenceMethods 

Source
pub trait IAnimalCatchSequenceMethods: IAnimalCatchSequence {
Show 13 methods // Provided methods fn get_access(self) -> HubAccess { ... } fn set_access(self, value: impl Into<HubAccess>) { ... } fn get_animal(self) -> AnimalData { ... } fn set_animal(self, value: impl Into<AnimalData>) { ... } fn get_player(self) -> HubPlayerController { ... } fn get_camera(self) -> HubCamera { ... } fn ctor(self, access: impl Into<HubAccess>) { ... } fn init(self) { ... } fn exit(self) { ... } fn start_capture(self) { ... } fn main_capture(self) -> IEnumerator { ... } fn end_capture(self) { ... } fn finish_capture(self) { ... }
}

Provided Methods§

Source

fn get_access(self) -> HubAccess

get_Access() overload

Source

fn set_access(self, value: impl Into<HubAccess>)

set_Access(crate::app::hubaccess::HubAccess) overload

Source

fn get_animal(self) -> AnimalData

get_Animal() overload

Source

fn set_animal(self, value: impl Into<AnimalData>)

set_Animal(crate::app::animaldata::AnimalData) overload

Source

fn get_player(self) -> HubPlayerController

get_Player() overload

Source

fn get_camera(self) -> HubCamera

get_Camera() overload

Source

fn ctor(self, access: impl Into<HubAccess>)

.ctor(crate::app::hubaccess::HubAccess) overload

Source

fn init(self)

Init() overload

Source

fn exit(self)

Exit() overload

Source

fn start_capture(self)

StartCapture() overload

Source

fn main_capture(self) -> IEnumerator

MainCapture() overload

Source

fn end_capture(self)

EndCapture() overload

Source

fn finish_capture(self)

FinishCapture() 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: IAnimalCatchSequence> IAnimalCatchSequenceMethods for __T

Available on crate feature app-animalcatchsequence only.