Skip to main content

CoreSyncSvc

Trait CoreSyncSvc 

Source
pub trait CoreSyncSvc:
    Service<CoreSyncDataRequest, Response = CoreSyncDataResponse, Error = BoxError, Future: Send + 'static>
    + Send
    + 'static { }

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> CoreSyncSvc for T
where T: Service<CoreSyncDataRequest, Response = CoreSyncDataResponse, Error = BoxError, Future: Send + 'static> + Send + 'static,