Skip to main content

ProcessReadService

Trait ProcessReadService 

Source
pub trait ProcessReadService: Send + Sync {
    // Provided method
    fn list_visible<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        _session_id: &'life1 str,
        _mode: ProcessListMode,
        _scope: ProcessOpScope<'life2>,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<ProcessHandleGrantEntry>, PluginError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait { ... }
}

Provided Methods§

Source

fn list_visible<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, _session_id: &'life1 str, _mode: ProcessListMode, _scope: ProcessOpScope<'life2>, ) -> Pin<Box<dyn Future<Output = Result<Vec<ProcessHandleGrantEntry>, PluginError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§