pub trait ErrnoSentinel: Sized {
// Required method
fn sentinel() -> Self;
}
Expand description
The sentinel value indicates that a function failed and more detailed
information about the error can be found in errno
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.