Struct mssf_core::runtime::stateful_bridge::IFabricReplicatorBridge
source · pub struct IFabricReplicatorBridge<E, R>where
E: Executor,
R: Replicator,{ /* private fields */ }
Implementations§
source§impl<E, R> IFabricReplicatorBridge<E, R>where
E: Executor,
R: Replicator,
impl<E, R> IFabricReplicatorBridge<E, R>where
E: Executor,
R: Replicator,
pub fn create(rplctr: R, rt: E) -> IFabricReplicatorBridge<E, R>
Trait Implementations§
source§impl<E, R> AsImpl<IFabricReplicatorBridge<E, R>> for IFabricReplicatorwhere
E: Executor,
R: Replicator,
impl<E, R> AsImpl<IFabricReplicatorBridge<E, R>> for IFabricReplicatorwhere
E: Executor,
R: Replicator,
source§unsafe fn as_impl(&self) -> &IFabricReplicatorBridge<E, R>
unsafe fn as_impl(&self) -> &IFabricReplicatorBridge<E, R>
Safety Read more
source§impl<E, R> From<IFabricReplicatorBridge<E, R>> for IFabricReplicatorwhere
E: Executor,
R: Replicator,
impl<E, R> From<IFabricReplicatorBridge<E, R>> for IFabricReplicatorwhere
E: Executor,
R: Replicator,
source§fn from(this: IFabricReplicatorBridge<E, R>) -> Self
fn from(this: IFabricReplicatorBridge<E, R>) -> Self
Converts to this type from the input type.
source§impl<E, R> From<IFabricReplicatorBridge<E, R>> for IInspectablewhere
E: Executor,
R: Replicator,
impl<E, R> From<IFabricReplicatorBridge<E, R>> for IInspectablewhere
E: Executor,
R: Replicator,
source§fn from(this: IFabricReplicatorBridge<E, R>) -> Self
fn from(this: IFabricReplicatorBridge<E, R>) -> Self
Converts to this type from the input type.
source§impl<E, R> From<IFabricReplicatorBridge<E, R>> for IUnknownwhere
E: Executor,
R: Replicator,
impl<E, R> From<IFabricReplicatorBridge<E, R>> for IUnknownwhere
E: Executor,
R: Replicator,
source§fn from(this: IFabricReplicatorBridge<E, R>) -> Self
fn from(this: IFabricReplicatorBridge<E, R>) -> Self
Converts to this type from the input type.
source§impl<E, R> IFabricReplicator_Impl for IFabricReplicatorBridge<E, R>where
E: Executor,
R: Replicator,
impl<E, R> IFabricReplicator_Impl for IFabricReplicatorBridge<E, R>where
E: Executor,
R: Replicator,
fn BeginOpen( &self, callback: Option<&IFabricAsyncOperationCallback> ) -> Result<IFabricAsyncOperationContext>
fn EndOpen( &self, context: Option<&IFabricAsyncOperationContext> ) -> Result<IFabricStringResult>
fn BeginChangeRole( &self, epoch: *const FABRIC_EPOCH, role: FABRIC_REPLICA_ROLE, callback: Option<&IFabricAsyncOperationCallback> ) -> Result<IFabricAsyncOperationContext>
fn EndChangeRole( &self, context: Option<&IFabricAsyncOperationContext> ) -> Result<()>
fn BeginUpdateEpoch( &self, epoch: *const FABRIC_EPOCH, callback: Option<&IFabricAsyncOperationCallback> ) -> Result<IFabricAsyncOperationContext>
fn EndUpdateEpoch( &self, context: Option<&IFabricAsyncOperationContext> ) -> Result<()>
fn BeginClose( &self, callback: Option<&IFabricAsyncOperationCallback> ) -> Result<IFabricAsyncOperationContext>
fn EndClose(&self, context: Option<&IFabricAsyncOperationContext>) -> Result<()>
fn Abort(&self)
fn GetCurrentProgress(&self) -> Result<i64>
fn GetCatchUpCapability(&self) -> Result<i64>
Auto Trait Implementations§
impl<E, R> Freeze for IFabricReplicatorBridge<E, R>where
E: Freeze,
impl<E, R> RefUnwindSafe for IFabricReplicatorBridge<E, R>where
E: RefUnwindSafe,
R: RefUnwindSafe,
impl<E, R> Send for IFabricReplicatorBridge<E, R>
impl<E, R> Sync for IFabricReplicatorBridge<E, R>
impl<E, R> Unpin for IFabricReplicatorBridge<E, R>where
E: Unpin,
impl<E, R> UnwindSafe for IFabricReplicatorBridge<E, R>where
E: UnwindSafe,
R: RefUnwindSafe,
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