Lines Matching refs:std
1 use std::sync::Arc;
20 impl std::fmt::Debug for Error {
21 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
22 std::fmt::Debug::fmt(&self.0, f) in fmt()
25 impl std::fmt::Display for Error {
26 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { in fmt()
27 std::fmt::Display::fmt(&self.0, f) in fmt()
30 impl std::error::Error for Error {}
31 impl From<std::io::Error> for Error {
32 fn from(err: std::io::Error) -> Self { in from()
40 impl From<Error> for std::io::Error {
42 std::io::Error::other(err) in from()