pub struct ExtendedGameInfo<'a> {
pub full_path: Option<&'a CStr>,
pub archive_path: Option<&'a CStr>,
pub archive_file: Option<&'a CStr>,
pub dir: Option<&'a CStr>,
pub name: Option<&'a CStr>,
pub extension: Option<&'a CStr>,
pub meta: Option<&'a CStr>,
pub data: Option<&'a [u8]>,
pub file_in_archive: bool,
pub persistent_data: bool,
}Fields§
§full_path: Option<&'a CStr>§archive_path: Option<&'a CStr>§archive_file: Option<&'a CStr>§dir: Option<&'a CStr>§name: Option<&'a CStr>§extension: Option<&'a CStr>§meta: Option<&'a CStr>§data: Option<&'a [u8]>§file_in_archive: bool§persistent_data: boolTrait Implementations§
Source§impl<'a> Clone for ExtendedGameInfo<'a>
impl<'a> Clone for ExtendedGameInfo<'a>
Source§fn clone(&self) -> ExtendedGameInfo<'a>
fn clone(&self) -> ExtendedGameInfo<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ExtendedGameInfo<'a>
impl<'a> Debug for ExtendedGameInfo<'a>
Source§impl<'a> PartialEq for ExtendedGameInfo<'a>
impl<'a> PartialEq for ExtendedGameInfo<'a>
Source§fn eq(&self, other: &ExtendedGameInfo<'a>) -> bool
fn eq(&self, other: &ExtendedGameInfo<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for ExtendedGameInfo<'a>
impl<'a> Eq for ExtendedGameInfo<'a>
impl<'a> StructuralPartialEq for ExtendedGameInfo<'a>
Auto Trait Implementations§
impl<'a> Freeze for ExtendedGameInfo<'a>
impl<'a> RefUnwindSafe for ExtendedGameInfo<'a>
impl<'a> Send for ExtendedGameInfo<'a>
impl<'a> Sync for ExtendedGameInfo<'a>
impl<'a> Unpin for ExtendedGameInfo<'a>
impl<'a> UnsafeUnpin for ExtendedGameInfo<'a>
impl<'a> UnwindSafe for ExtendedGameInfo<'a>
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