pub type DataSourceResult = Result<(), DataSourceError>;Expand description
Result from DataSource operations.
On success, the operations return Ok(()). The actual value is transmitted through the
context argument. See DataSource::read() and DataSource::write() for details.
Aliased Type§
enum DataSourceResult {
Ok(()),
Err(DataSourceError),
}