pub trait CoreDump: Clone {
// Required methods
fn token(&self) -> Result<String>;
fn base_api_url(&self) -> Result<String>;
fn version(&self) -> Result<String>;
fn pool(&self) -> Result<String>;
fn os<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<OsInfo>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn is_tauri(&self) -> Result<bool>;
fn get_webrtc_stats<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<WebrtcStats>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn screenshot<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
// Provided methods
fn upload_screenshot<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<String>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait { ... }
fn dump<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<AppInfo>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait { ... }
}
Required Methods§
fn base_api_url(&self) -> Result<String>
fn version(&self) -> Result<String>
fn pool(&self) -> Result<String>
fn os<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<OsInfo>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn is_tauri(&self) -> Result<bool>
fn get_webrtc_stats<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<WebrtcStats>> + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Provided Methods§
Object Safety§
This trait is not object safe.