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