Trait playdate_fs::options::OpenOptions
source · pub trait OpenOptions: Into<FileOptions> {
// Required methods
fn open<P: AsRef<Path>>(&self, path: P) -> Result<File<Cache>, ApiError>;
fn open_using<Api: Api, P: AsRef<Path>>(
&self,
api: Api,
path: P
) -> Result<File<Api>, ApiError>;
}Required Methods§
Object Safety§
This trait is not object safe.