Skip to main content

INexRelay_DownloadSequenceMethods

Trait INexRelay_DownloadSequenceMethods 

Source
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§

Source

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

Source

fn postlogin(self)

Postlogin() overload

Source

fn is_need_to_get_meta_info(self) -> bool

IsNeedToGetMetaInfo() overload

Source

fn get_meta_info(self)

GetMetaInfo() overload

Source

fn get_data(self)

GetData() overload

Source

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§

Source§

impl<__T: INexRelay_DownloadSequence> INexRelay_DownloadSequenceMethods for __T

Available on crate feature app-nexrelay only.