pub struct StatelessServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatelessServiceFactory + 'static,{ /* private fields */ }
Implementations§
Source§impl<E, F> StatelessServiceFactoryBridge<E, F>where
E: Executor,
F: StatelessServiceFactory,
impl<E, F> StatelessServiceFactoryBridge<E, F>where
E: Executor,
F: StatelessServiceFactory,
pub fn create(factory: F, rt: E) -> StatelessServiceFactoryBridge<E, F>
Trait Implementations§
Source§impl<E, F> AsImpl<StatelessServiceFactoryBridge<E, F>> for IFabricStatelessServiceFactorywhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
impl<E, F> AsImpl<StatelessServiceFactoryBridge<E, F>> for IFabricStatelessServiceFactorywhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
Source§impl<E, F> ComObjectInner for StatelessServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
impl<E, F> ComObjectInner for StatelessServiceFactoryBridge<E, F>where
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
Source§type Outer = StatelessServiceFactoryBridge_Impl<E, F>
type Outer = StatelessServiceFactoryBridge_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<StatelessServiceFactoryBridge<E, F>> for IFabricStatelessServiceFactorywhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
impl<E, F> From<StatelessServiceFactoryBridge<E, F>> for IFabricStatelessServiceFactorywhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
Source§fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Source§impl<E, F> From<StatelessServiceFactoryBridge<E, F>> for IInspectablewhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
impl<E, F> From<StatelessServiceFactoryBridge<E, F>> for IInspectablewhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
Source§fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Source§impl<E, F> From<StatelessServiceFactoryBridge<E, F>> for IUnknownwhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
impl<E, F> From<StatelessServiceFactoryBridge<E, F>> for IUnknownwhere
E: Executor + 'static,
F: StatelessServiceFactory + 'static,
Source§fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
fn from(this: StatelessServiceFactoryBridge<E, F>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<E, F> Freeze for StatelessServiceFactoryBridge<E, F>
impl<E, F> RefUnwindSafe for StatelessServiceFactoryBridge<E, F>where
F: RefUnwindSafe,
E: RefUnwindSafe,
impl<E, F> Send for StatelessServiceFactoryBridge<E, F>where
F: Send,
impl<E, F> Sync for StatelessServiceFactoryBridge<E, F>where
F: Sync,
impl<E, F> Unpin for StatelessServiceFactoryBridge<E, F>
impl<E, F> UnwindSafe for StatelessServiceFactoryBridge<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