## unknown `into` behavior ```rust let s: Box = "connection reset by peer".into(); ``` this works because: ```rust impl From<&'_ str> for Box ```