pub trait INexRelay_DownloadSequenceMethods: INexRelay_DownloadSequence {
// Provided methods
fn ctor(
self,
data_id: impl Into<u64>,
result: impl Into<RelayServerData>,
result_meta: impl Into<RelayServerMetaData>,
) { ... }
fn postlogin(self) { ... }
fn is_need_to_get_meta_info(self) -> bool { ... }
fn get_meta_info(self) { ... }
fn get_data(self) { ... }
fn confirm_retry(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
data_id: impl Into<u64>,
result: impl Into<RelayServerData>,
result_meta: impl Into<RelayServerMetaData>,
)
fn ctor( self, data_id: impl Into<u64>, result: impl Into<RelayServerData>, result_meta: impl Into<RelayServerMetaData>, )
.ctor(u64, crate::app::relayserverdata::RelayServerData, crate::app::relayservermetadata::RelayServerMetaData) overload
Sourcefn is_need_to_get_meta_info(self) -> bool
fn is_need_to_get_meta_info(self) -> bool
IsNeedToGetMetaInfo() overload
Sourcefn get_meta_info(self)
fn get_meta_info(self)
GetMetaInfo() overload
Sourcefn confirm_retry(self)
fn confirm_retry(self)
ConfirmRetry() 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: INexRelay_DownloadSequence> INexRelay_DownloadSequenceMethods for __T
Available on crate feature
app-nexrelay only.