pub trait INexRelay_ServerSequenceBaseMethods: INexRelay_ServerSequenceBase {
// Provided methods
fn login(self) { ... }
fn postlogin(
self,
label_when_cancelled: impl Into<i32>,
label_when_failed: impl Into<i32>,
) { ... }
fn set_result(self, result: impl Into<NexRelay_Results>) { ... }
fn set_result_failed(self, error: impl Into<NetError_App>) { ... }
fn set_result_failed_compare(self) { ... }
fn set_result_failed_not_found(self) { ... }
fn error(self) { ... }
fn set_meta_binary(
self,
param_meta_bytes: impl Into<List_1<u8>>,
meta_data: impl Into<RelayServerMetaData>,
for_compare: impl Into<bool>,
) { ... }
fn complement_time(self, meta_data: impl Into<RelayServerMetaData>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn postlogin(
self,
label_when_cancelled: impl Into<i32>,
label_when_failed: impl Into<i32>,
)
fn postlogin( self, label_when_cancelled: impl Into<i32>, label_when_failed: impl Into<i32>, )
Postlogin(i32, i32) overload
Sourcefn set_result(self, result: impl Into<NexRelay_Results>)
fn set_result(self, result: impl Into<NexRelay_Results>)
SetResult(crate::app::nexrelay::NexRelay_Results) overload
Sourcefn set_result_failed(self, error: impl Into<NetError_App>)
fn set_result_failed(self, error: impl Into<NetError_App>)
SetResultFailed(crate::app::neterror::NetError_App) overload
Sourcefn set_result_failed_compare(self)
fn set_result_failed_compare(self)
SetResultFailedCompare() overload
Sourcefn set_result_failed_not_found(self)
fn set_result_failed_not_found(self)
SetResultFailedNotFound() overload
Sourcefn set_meta_binary(
self,
param_meta_bytes: impl Into<List_1<u8>>,
meta_data: impl Into<RelayServerMetaData>,
for_compare: impl Into<bool>,
)
fn set_meta_binary( self, param_meta_bytes: impl Into<List_1<u8>>, meta_data: impl Into<RelayServerMetaData>, for_compare: impl Into<bool>, )
SetMetaBinary(crate::system::collections::generic::list_1::List_1<u8>, crate::app::relayservermetadata::RelayServerMetaData, bool) overload
Sourcefn complement_time(self, meta_data: impl Into<RelayServerMetaData>)
fn complement_time(self, meta_data: impl Into<RelayServerMetaData>)
ComplementTime(crate::app::relayservermetadata::RelayServerMetaData) 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_ServerSequenceBase> INexRelay_ServerSequenceBaseMethods for __T
Available on crate feature
app-nexrelay only.