pub trait FileLike: Node {
// Required method
fn open(
self: Arc<Self>,
scope: ExecutionScope,
options: FileOptions,
object_request: ObjectRequestRef<'_>,
) -> Result<(), Status>;
}Required Methods§
fn open( self: Arc<Self>, scope: ExecutionScope, options: FileOptions, object_request: ObjectRequestRef<'_>, ) -> Result<(), Status>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".