pub struct WebSocketClientInterfaceSetupDataNative(pub WebSocketClientInterfaceSetupData);Tuple Fields§
§0: WebSocketClientInterfaceSetupDataTrait Implementations§
Source§impl ComInterfaceAsyncFactory for WebSocketClientInterfaceSetupDataNative
impl ComInterfaceAsyncFactory for WebSocketClientInterfaceSetupDataNative
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 WebSocketClientInterfaceSetupDataNative
impl<'de> Deserialize<'de> for WebSocketClientInterfaceSetupDataNative
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<WebSocketClientInterfaceSetupData> for WebSocketClientInterfaceSetupDataNative
impl From<WebSocketClientInterfaceSetupData> for WebSocketClientInterfaceSetupDataNative
Source§fn from(value: WebSocketClientInterfaceSetupData) -> Self
fn from(value: WebSocketClientInterfaceSetupData) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WebSocketClientInterfaceSetupDataNative
impl RefUnwindSafe for WebSocketClientInterfaceSetupDataNative
impl Send for WebSocketClientInterfaceSetupDataNative
impl Sync for WebSocketClientInterfaceSetupDataNative
impl Unpin for WebSocketClientInterfaceSetupDataNative
impl UnsafeUnpin for WebSocketClientInterfaceSetupDataNative
impl UnwindSafe for WebSocketClientInterfaceSetupDataNative
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