pub type Result<T> = Result<T, Error>;Expand description
Result that is a wrapper of Result<T, iceberg::Error>
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}Variants§
Trait Implementations§
Source§impl From<FileScanTask> for Result<FileScanTask>
impl From<FileScanTask> for Result<FileScanTask>
Source§fn from(task: FileScanTask) -> Self
fn from(task: FileScanTask) -> Self
Converts to this type from the input type.