pub struct DroppedFilePathList(/* private fields */);Implementations§
Source§impl DroppedFilePathList
impl DroppedFilePathList
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 DroppedFilePathList
impl DroppedFilePathList
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) -> DroppedFilePathList
pub unsafe fn from_raw(raw: FilePathList) -> DroppedFilePathList
converts raylib-sys object to a “safe” version. Make sure to call this function from the thread the resource was created.
Trait Implementations§
Source§impl AsMut<FilePathList> for DroppedFilePathList
impl AsMut<FilePathList> for DroppedFilePathList
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 DroppedFilePathList
impl AsRef<FilePathList> for DroppedFilePathList
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 DroppedFilePathList
impl Debug for DroppedFilePathList
Source§impl Deref for DroppedFilePathList
impl Deref for DroppedFilePathList
Source§type Target = FilePathList
type Target = FilePathList
The resulting type after dereferencing.
Source§impl DerefMut for DroppedFilePathList
impl DerefMut for DroppedFilePathList
Auto Trait Implementations§
impl Freeze for DroppedFilePathList
impl RefUnwindSafe for DroppedFilePathList
impl !Send for DroppedFilePathList
impl !Sync for DroppedFilePathList
impl Unpin for DroppedFilePathList
impl UnsafeUnpin for DroppedFilePathList
impl UnwindSafe for DroppedFilePathList
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