Represents a synchronous operation that yields a Result<T, Error>.
This is a result that is either Ok(T) if the operation was successful, or Err(Error) if there was an error.
Type Parameters
T
The type of the value that is produced by a successful operation.
Represents a synchronous operation that yields a
Result<T, Error>. This is a result that is eitherOk(T)if the operation was successful, orErr(Error)if there was an error.