Trait Folder2_Impl
pub trait Folder2_Impl: Folder_Impl {
// Required methods
fn Self_(&self) -> Result<FolderItem>;
fn OfflineStatus(&self) -> Result<i32>;
fn Synchronize(&self) -> Result<()>;
fn HaveToShowWebViewBarricade(&self) -> Result<VARIANT_BOOL>;
fn DismissedWebViewBarricade(&self) -> Result<()>;
}
Required Methods§
fn Self_(&self) -> Result<FolderItem>
fn OfflineStatus(&self) -> Result<i32>
fn Synchronize(&self) -> Result<()>
fn HaveToShowWebViewBarricade(&self) -> Result<VARIANT_BOOL>
fn DismissedWebViewBarricade(&self) -> Result<()>
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.