pub trait IRelayShowDataSequenceMethods: IRelayShowDataSequence {
// Provided methods
fn ctor(
self,
mode: impl Into<RelayShowDataDialog_Mode>,
meta_data: impl Into<RelayServerMetaData>,
is_new_play: impl Into<bool>,
) { ... }
fn is_skip_tutorial(self) -> bool { ... }
fn show(self) { ... }
fn is_set_publish_mode(self) -> bool { ... }
fn set_publish_mode(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
mode: impl Into<RelayShowDataDialog_Mode>,
meta_data: impl Into<RelayServerMetaData>,
is_new_play: impl Into<bool>,
)
fn ctor( self, mode: impl Into<RelayShowDataDialog_Mode>, meta_data: impl Into<RelayServerMetaData>, is_new_play: impl Into<bool>, )
.ctor(crate::app::relayshowdatadialog::RelayShowDataDialog_Mode, crate::app::relayservermetadata::RelayServerMetaData, bool) overload
Sourcefn is_skip_tutorial(self) -> bool
fn is_skip_tutorial(self) -> bool
IsSkipTutorial() overload
Sourcefn is_set_publish_mode(self) -> bool
fn is_set_publish_mode(self) -> bool
IsSetPublishMode() overload
Sourcefn set_publish_mode(self)
fn set_publish_mode(self)
SetPublishMode() 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: IRelayShowDataSequence> IRelayShowDataSequenceMethods for __T
Available on crate feature
app-relayshowdatasequence only.