#[repr(C)]pub struct PHYSFS_ArchiveInfo {
pub extension: *const c_char,
pub description: *const c_char,
pub author: *const c_char,
pub url: *const c_char,
pub supportsSymlinks: c_int,
}Expand description
\struct PHYSFS_ArchiveInfo \brief Information on various PhysicsFS-supported archives.
This structure gives you details on what sort of archives are supported by this implementation of PhysicsFS. Archives tend to be things like ZIP files and such.
\warning Not all binaries are created equal! PhysicsFS can be built with or without support for various archives. You can check with PHYSFS_supportedArchiveTypes() to see if your archive type is supported.
\sa PHYSFS_supportedArchiveTypes \sa PHYSFS_registerArchiver \sa PHYSFS_deregisterArchiver
Fields§
§extension: *const c_char< Archive file extension: “ZIP”, for example.
description: *const c_char< Human-readable archive description.
< Person who did support for this archive.
url: *const c_char< URL related to this archive
supportsSymlinks: c_int< non-zero if archive offers symbolic links.
Trait Implementations§
Source§impl Clone for PHYSFS_ArchiveInfo
impl Clone for PHYSFS_ArchiveInfo
Source§fn clone(&self) -> PHYSFS_ArchiveInfo
fn clone(&self) -> PHYSFS_ArchiveInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PHYSFS_ArchiveInfo
impl Debug for PHYSFS_ArchiveInfo
impl Copy for PHYSFS_ArchiveInfo
Auto Trait Implementations§
impl Freeze for PHYSFS_ArchiveInfo
impl RefUnwindSafe for PHYSFS_ArchiveInfo
impl !Send for PHYSFS_ArchiveInfo
impl !Sync for PHYSFS_ArchiveInfo
impl Unpin for PHYSFS_ArchiveInfo
impl UnwindSafe for PHYSFS_ArchiveInfo
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