pub struct FilePathList(/* private fields */);
Implementations§
Source§impl FilePathList
impl FilePathList
Sourcepub unsafe fn unwrap(self) -> FilePathList
pub unsafe fn unwrap(self) -> FilePathList
Take the raw ffi type. Must manually free memory by calling the proper unload function
Source§impl FilePathList
impl FilePathList
Sourcepub fn to_raw(self) -> FilePathList
pub fn to_raw(self) -> FilePathList
returns the unwrapped raylib-sys object
Sourcepub unsafe fn from_raw(raw: FilePathList) -> Self
pub unsafe fn from_raw(raw: FilePathList) -> Self
converts raylib-sys object to a “safe” version. Make sure to call this function from the thread the resource was created.
Source§impl FilePathList
impl FilePathList
Trait Implementations§
Source§impl AsMut<FilePathList> for FilePathList
impl AsMut<FilePathList> for FilePathList
Source§fn as_mut(&mut self) -> &mut FilePathList
fn as_mut(&mut self) -> &mut FilePathList
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<FilePathList> for FilePathList
impl AsRef<FilePathList> for FilePathList
Source§fn as_ref(&self) -> &FilePathList
fn as_ref(&self) -> &FilePathList
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Debug for FilePathList
impl Debug for FilePathList
Source§impl Deref for FilePathList
impl Deref for FilePathList
Source§impl DerefMut for FilePathList
impl DerefMut for FilePathList
Auto Trait Implementations§
impl Freeze for FilePathList
impl RefUnwindSafe for FilePathList
impl !Send for FilePathList
impl !Sync for FilePathList
impl Unpin for FilePathList
impl UnwindSafe for FilePathList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more