pub trait IFileSystemInfoMethods: IFileSystemInfo {
// Provided methods
fn ctor(self) { ... }
fn get_full_name(self) -> Il2CppString { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_exists(self) -> bool { ... }
fn refresh(self) { ... }
fn get_display_path(self) -> Il2CppString { ... }
fn set_display_path(self, value: impl Into<Il2CppString>) { ... }
}Provided Methods§
Sourcefn get_full_name(self) -> Il2CppString
fn get_full_name(self) -> Il2CppString
get_FullName() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
get_Name() overload
Sourcefn get_exists(self) -> bool
fn get_exists(self) -> bool
get_Exists() overload
Sourcefn get_display_path(self) -> Il2CppString
fn get_display_path(self) -> Il2CppString
get_DisplayPath() overload
Sourcefn set_display_path(self, value: impl Into<Il2CppString>)
fn set_display_path(self, value: impl Into<Il2CppString>)
set_DisplayPath(::unity::Il2CppString) 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: IFileSystemInfo> IFileSystemInfoMethods for __T
Available on crate feature
system-io-filesysteminfo only.