Skip to main content

IPhotographModeSequenceMethods

Trait IPhotographModeSequenceMethods 

Source
pub trait IPhotographModeSequenceMethods: IPhotographModeSequence {
    // Provided methods
    fn jump_reserved_label(self) { ... }
    fn ctor(
        self,
        all_menu_content: impl Into<PhotographAllMenuContent>,
        camera_controller: impl Into<PhotographCameraController>,
        dispos_manager: impl Into<PhotographDisposManager>,
    ) { ... }
    fn tick(self) { ... }
    fn photograph_coroutine(self) -> IEnumerator { ... }
}

Provided Methods§

Source

fn jump_reserved_label(self)

JumpReservedLabel() overload

Source

fn ctor( self, all_menu_content: impl Into<PhotographAllMenuContent>, camera_controller: impl Into<PhotographCameraController>, dispos_manager: impl Into<PhotographDisposManager>, )

.ctor(crate::app::photographallmenucontent::PhotographAllMenuContent, crate::app::photographcameracontroller::PhotographCameraController, crate::app::photographdisposmanager::PhotographDisposManager) overload

Source

fn tick(self)

Tick() overload

Source

fn photograph_coroutine(self) -> IEnumerator

PhotographCoroutine() 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: IPhotographModeSequence> IPhotographModeSequenceMethods for __T

Available on crate feature app-photographmodesequence only.