Lines Matching defs:Error
95 pub struct Error(core::ffi::c_int); struct
97 impl Error { implementation
102 pub(crate) fn from_errno(errno: core::ffi::c_int) -> Error { in from_errno()
122 unsafe fn from_errno_unchecked(errno: core::ffi::c_int) -> Error { in from_errno_unchecked()
164 impl fmt::Debug for Error { implementation
177 impl From<AllocError> for Error { implementation
178 fn from(_: AllocError) -> Error { in from()
183 impl From<TryFromIntError> for Error { implementation
184 fn from(_: TryFromIntError) -> Error { in from()
189 impl From<Utf8Error> for Error { implementation
190 fn from(_: Utf8Error) -> Error { in from()
195 impl From<TryReserveError> for Error { implementation
196 fn from(_: TryReserveError) -> Error { in from()
201 impl From<LayoutError> for Error { implementation
202 fn from(_: LayoutError) -> Error { in from()
207 impl From<core::fmt::Error> for Error { implementation
208 fn from(_: core::fmt::Error) -> Error { in from()
213 impl From<core::convert::Infallible> for Error { implementation
214 fn from(e: core::convert::Infallible) -> Error { in from()