[][src]Struct gdnative_bindings::Directory

pub struct Directory { /* fields omitted */ }

core class Directory inherits Reference (reference counted).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

The lifetime of this object is automatically managed through reference counting.

Class hierarchy

Directory inherits methods from:

Methods

impl Directory[src]

pub fn new() -> Self[src]

pub fn new_ref(&self) -> Self[src]

Creates a new reference to the same reference-counted object.

pub fn change_dir(&mut self, todir: GodotString) -> GodotResult[src]

pub fn copy(&mut self, from: GodotString, to: GodotString) -> GodotResult[src]

pub fn current_is_dir(&self) -> bool[src]

pub fn dir_exists(&mut self, path: GodotString) -> bool[src]

pub fn file_exists(&mut self, path: GodotString) -> bool[src]

pub fn get_current_dir(&mut self) -> GodotString[src]

pub fn get_current_drive(&mut self) -> i64[src]

pub fn get_drive(&mut self, idx: i64) -> GodotString[src]

pub fn get_drive_count(&mut self) -> i64[src]

pub fn get_next(&mut self) -> GodotString[src]

pub fn get_space_left(&mut self) -> i64[src]

pub fn list_dir_begin(
    &mut self,
    skip_navigational: bool,
    skip_hidden: bool
) -> GodotResult
[src]

pub fn list_dir_end(&mut self)[src]

pub fn make_dir(&mut self, path: GodotString) -> GodotResult[src]

pub fn make_dir_recursive(&mut self, path: GodotString) -> GodotResult[src]

pub fn open(&mut self, path: GodotString) -> GodotResult[src]

pub fn remove(&mut self, path: GodotString) -> GodotResult[src]

pub fn rename(&mut self, from: GodotString, to: GodotString) -> GodotResult[src]

pub fn init_ref(&mut self) -> bool[src]

Inherited from Reference.

pub fn to_reference(&self) -> Reference[src]

Up-cast.

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T: GodotObject>(&self) -> Option<T>[src]

Generic dynamic cast.

Methods from Deref<Target = Reference>

pub fn new_ref(&self) -> Reference[src]

Creates a new reference to the same reference-counted object.

pub fn init_ref(&mut self) -> bool[src]

pub fn to_object(&self) -> Object[src]

Up-cast.

pub fn cast<T>(&self) -> Option<T> where
    T: GodotObject
[src]

Generic dynamic cast.

Trait Implementations

impl Clone for Directory[src]

impl Debug for Directory[src]

impl Deref for Directory[src]

type Target = Reference

The resulting type after dereferencing.

impl DerefMut for Directory[src]

impl Drop for Directory[src]

impl FromVariant for Directory[src]

impl GodotObject for Directory[src]

impl Instanciable for Directory[src]

impl ToVariant for Directory[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.