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§
Sourcefn jump_reserved_label(self)
fn jump_reserved_label(self)
JumpReservedLabel() overload
Sourcefn ctor(
self,
all_menu_content: impl Into<PhotographAllMenuContent>,
camera_controller: impl Into<PhotographCameraController>,
dispos_manager: impl Into<PhotographDisposManager>,
)
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
Sourcefn photograph_coroutine(self) -> IEnumerator
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§
impl<__T: IPhotographModeSequence> IPhotographModeSequenceMethods for __T
Available on crate feature
app-photographmodesequence only.