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