pub trait LogManager: Send + Sync {
// Required method
fn log_get<'life0, 'async_trait>(
&'life0 self,
args: LogGetRequest,
) -> Pin<Box<dyn Future<Output = Result<LogGetResponse, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Log manager interface.
Required Methods§
Sourcefn log_get<'life0, 'async_trait>(
&'life0 self,
args: LogGetRequest,
) -> Pin<Box<dyn Future<Output = Result<LogGetResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn log_get<'life0, 'async_trait>(
&'life0 self,
args: LogGetRequest,
) -> Pin<Box<dyn Future<Output = Result<LogGetResponse, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Request to host to fetch logs.
The PermissionLogView
permission is required to call this method.