into
let s: Box<dyn Error + Send + Sync> = "connection reset by peer".into();
this works because:
impl From<&'_ str> for Box<dyn Error>