pub trait IFileStreamAsyncResultMethods: IFileStreamAsyncResult {
// Provided methods
fn get_async_state(self) -> Object { ... }
fn get_completed_synchronously(self) -> bool { ... }
fn get_is_completed(self) -> bool { ... }
}Provided Methods§
Sourcefn get_async_state(self) -> Object
fn get_async_state(self) -> Object
get_AsyncState() overload
Sourcefn get_completed_synchronously(self) -> bool
fn get_completed_synchronously(self) -> bool
get_CompletedSynchronously() overload
Sourcefn get_is_completed(self) -> bool
fn get_is_completed(self) -> bool
get_IsCompleted() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IFileStreamAsyncResult> IFileStreamAsyncResultMethods for __T
Available on crate feature
system-io-filestreamasyncresult only.