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§
Sourcefn get_access(self) -> HubAccess
fn get_access(self) -> HubAccess
get_Access() overload
Sourcefn set_access(self, value: impl Into<HubAccess>)
fn set_access(self, value: impl Into<HubAccess>)
set_Access(crate::app::hubaccess::HubAccess) overload
Sourcefn get_animal(self) -> AnimalData
fn get_animal(self) -> AnimalData
get_Animal() overload
Sourcefn set_animal(self, value: impl Into<AnimalData>)
fn set_animal(self, value: impl Into<AnimalData>)
set_Animal(crate::app::animaldata::AnimalData) overload
Sourcefn get_player(self) -> HubPlayerController
fn get_player(self) -> HubPlayerController
get_Player() overload
Sourcefn get_camera(self) -> HubCamera
fn get_camera(self) -> HubCamera
get_Camera() overload
Sourcefn start_capture(self)
fn start_capture(self)
StartCapture() overload
Sourcefn main_capture(self) -> IEnumerator
fn main_capture(self) -> IEnumerator
MainCapture() overload
Sourcefn end_capture(self)
fn end_capture(self)
EndCapture() overload
Sourcefn finish_capture(self)
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§
impl<__T: IAnimalCatchSequence> IAnimalCatchSequenceMethods for __T
Available on crate feature
app-animalcatchsequence only.