pub trait FallibleContext {
type PlatformError: Error;
}Expand description
A context that can fail.
Platforms implement this trait to expose their platform-specific error type.
This error type is wrapped in GenericError. An
Error type alias is provided for convenience.