Skip to main content

IFileSystemInfoMethods

Trait IFileSystemInfoMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn get_full_name(self) -> Il2CppString

get_FullName() overload

Source

fn get_name(self) -> Il2CppString

get_Name() overload

Source

fn get_exists(self) -> bool

get_Exists() overload

Source

fn refresh(self)

Refresh() overload

Source

fn get_display_path(self) -> Il2CppString

get_DisplayPath() overload

Source

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§

Source§

impl<__T: IFileSystemInfo> IFileSystemInfoMethods for __T

Available on crate feature system-io-filesysteminfo only.