pub struct Survey {
client: Client,
app_ctx: AppData,
}
Fields§
§client: Client
§app_ctx: AppData
Implementations§
Trait Implementations§
source§impl SurveyClientTrait for Survey
impl SurveyClientTrait for Survey
fn start_job<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(Sender<()>, JoinHandle<()>), ServiceError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn is_online<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<bool, ServiceError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn schedule_upload_job<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), ServiceError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
fn register<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<(), ServiceError>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,
Auto Trait Implementations§
impl !RefUnwindSafe for Survey
impl Send for Survey
impl Sync for Survey
impl Unpin for Survey
impl !UnwindSafe for Survey
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