pub trait Openerwhere Self: Sized,{ // Required method fn open(path: impl AsRef<Path>) -> Result<Self, Error>; }
Opening function.
Open the stream from the path.