pub struct TCPServerInterfaceSetupDataNative(pub TCPServerInterfaceSetupData);Tuple Fields§
§0: TCPServerInterfaceSetupDataMethods from Deref<Target = TCPServerInterfaceSetupData>§
pub fn get_clients_setup_data(&self) -> Vec<TCPClientInterfaceSetupData>
Trait Implementations§
Source§impl ComInterfaceAsyncFactory for TCPServerInterfaceSetupDataNative
impl ComInterfaceAsyncFactory for TCPServerInterfaceSetupDataNative
Source§fn create_interface(self) -> ComInterfaceAsyncFactoryResult
fn create_interface(self) -> ComInterfaceAsyncFactoryResult
Create a new instance of the interface with the given setup data.
If no instance could be created with the given setup data,
None is returned.
Source§fn get_default_properties() -> ComInterfaceProperties
fn get_default_properties() -> ComInterfaceProperties
Get the default interface properties for the interface.
Source§fn factory(
setup_data: ValueContainer,
) -> Pin<Box<dyn Future<Output = Result<ComInterfaceConfiguration, ComInterfaceCreateError>>>>
fn factory( setup_data: ValueContainer, ) -> Pin<Box<dyn Future<Output = Result<ComInterfaceConfiguration, ComInterfaceCreateError>>>>
The factory method that is called from the ComHub on a registered interface
to create a new instance of the interface.
The setup data is passed as a ValueContainer and has to be downcasted
Source§impl<'de> Deserialize<'de> for TCPServerInterfaceSetupDataNative
impl<'de> Deserialize<'de> for TCPServerInterfaceSetupDataNative
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TCPServerInterfaceSetupData> for TCPServerInterfaceSetupDataNative
impl From<TCPServerInterfaceSetupData> for TCPServerInterfaceSetupDataNative
Source§fn from(value: TCPServerInterfaceSetupData) -> Self
fn from(value: TCPServerInterfaceSetupData) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TCPServerInterfaceSetupDataNative
impl RefUnwindSafe for TCPServerInterfaceSetupDataNative
impl Send for TCPServerInterfaceSetupDataNative
impl Sync for TCPServerInterfaceSetupDataNative
impl Unpin for TCPServerInterfaceSetupDataNative
impl UnsafeUnpin for TCPServerInterfaceSetupDataNative
impl UnwindSafe for TCPServerInterfaceSetupDataNative
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more