Struct ue4pak::PakIndexV1
source · [−]pub struct PakIndexV1 {
pub mount_point: String,
/* private fields */
}
Expand description
FPakFile index
Fields
mount_point: String
Implementations
sourceimpl PakIndexV1
impl PakIndexV1
pub fn find(&self, name: &str) -> Option<&PakEntry>
pub fn named_entries(&self) -> impl Iterator<Item = (&str, &PakEntry)>
pub fn entries(&self) -> impl Iterator<Item = &PakEntry>
pub fn clear(&mut self)
pub fn add(&mut self, name: String, entry: PakEntry) -> &mut PakEntry
pub fn ser_de<A: Archive>(
&mut self,
ar: &mut A,
version: PakVersion
) -> Result<()>
Trait Implementations
sourceimpl Debug for PakIndexV1
impl Debug for PakIndexV1
sourceimpl Default for PakIndexV1
impl Default for PakIndexV1
sourcefn default() -> PakIndexV1
fn default() -> PakIndexV1
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for PakIndexV1
impl Send for PakIndexV1
impl Sync for PakIndexV1
impl Unpin for PakIndexV1
impl UnwindSafe for PakIndexV1
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more