pub trait ISolanelInfoSequenceMethods: ISolanelInfoSequence {
// Provided methods
fn get_m_decide_event_handler(
self,
) -> SolanelInfoSequence_DecideEventHandler { ... }
fn set_m_decide_event_handler(
self,
value: impl Into<SolanelInfoSequence_DecideEventHandler>,
) { ... }
fn ctor(
self,
event_handler: impl Into<SolanelInfoSequence_DecideEventHandler>,
) { ... }
fn create_desc(self) -> Array<ProcDesc> { ... }
fn load_res(self) { ... }
fn is_loading_res(self) -> bool { ... }
fn open(self) { ... }
fn set_result(self) { ... }
fn close(self) { ... }
}Provided Methods§
Sourcefn get_m_decide_event_handler(self) -> SolanelInfoSequence_DecideEventHandler
fn get_m_decide_event_handler(self) -> SolanelInfoSequence_DecideEventHandler
get_m_DecideEventHandler() overload
Sourcefn set_m_decide_event_handler(
self,
value: impl Into<SolanelInfoSequence_DecideEventHandler>,
)
fn set_m_decide_event_handler( self, value: impl Into<SolanelInfoSequence_DecideEventHandler>, )
set_m_DecideEventHandler(crate::app::solanelinfosequence::SolanelInfoSequence_DecideEventHandler) overload
Sourcefn ctor(self, event_handler: impl Into<SolanelInfoSequence_DecideEventHandler>)
fn ctor(self, event_handler: impl Into<SolanelInfoSequence_DecideEventHandler>)
.ctor(crate::app::solanelinfosequence::SolanelInfoSequence_DecideEventHandler) overload
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() overload
Sourcefn is_loading_res(self) -> bool
fn is_loading_res(self) -> bool
IsLoadingRes() overload
Sourcefn set_result(self)
fn set_result(self)
SetResult() 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: ISolanelInfoSequence> ISolanelInfoSequenceMethods for __T
Available on crate feature
app-solanelinfosequence only.