pub struct StatefulServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatefulServiceFactory + 'static,{ /* private fields */ }
Implementations§
Source§impl<E, F> StatefulServiceFactoryBridge<E, F>where
E: Executor,
F: StatefulServiceFactory,
impl<E, F> StatefulServiceFactoryBridge<E, F>where
E: Executor,
F: StatefulServiceFactory,
pub fn create(factory: F, rt: E) -> StatefulServiceFactoryBridge<E, F>
Trait Implementations§
Source§impl<E, F> AsImpl<StatefulServiceFactoryBridge<E, F>> for IFabricStatefulServiceFactorywhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
impl<E, F> AsImpl<StatefulServiceFactoryBridge<E, F>> for IFabricStatefulServiceFactorywhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
Source§impl<E, F> ComObjectInner for StatefulServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
impl<E, F> ComObjectInner for StatefulServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
Source§type Outer = StatefulServiceFactoryBridge_Impl<E, F>
type Outer = StatefulServiceFactoryBridge_Impl<E, F>
The generated
<foo>_Impl
type (aka the “boxed” type or “outer” type).Source§fn into_object(self) -> ComObject<Self>
fn into_object(self) -> ComObject<Self>
Moves an instance of this type into a new ComObject box and returns it. Read more
Source§impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IFabricStatefulServiceFactorywhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IFabricStatefulServiceFactorywhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
Source§fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Source§impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IInspectablewhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IInspectablewhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
Source§fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Source§impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IUnknownwhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
impl<E, F> From<StatefulServiceFactoryBridge<E, F>> for IUnknownwhere
E: Executor + 'static,
F: StatefulServiceFactory + 'static,
Source§fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
fn from(this: StatefulServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E, F> Freeze for StatefulServiceFactoryBridge<E, F>
impl<E, F> RefUnwindSafe for StatefulServiceFactoryBridge<E, F>where
F: RefUnwindSafe,
E: RefUnwindSafe,
impl<E, F> Send for StatefulServiceFactoryBridge<E, F>where
F: Send,
impl<E, F> Sync for StatefulServiceFactoryBridge<E, F>where
F: Sync,
impl<E, F> Unpin for StatefulServiceFactoryBridge<E, F>
impl<E, F> UnwindSafe for StatefulServiceFactoryBridge<E, F>where
F: UnwindSafe,
E: UnwindSafe,
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