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