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