Type Alias schema_connector::ConnectorResult
source · pub type ConnectorResult<T> = Result<T, ConnectorError>;
Expand description
Shorthand for a Result where the error variant is a ConnectorError.
Aliased Type§
enum ConnectorResult<T> {
Ok(T),
Err(ConnectorError),
}