pub struct Acf {
pub entries: Vec<Entry>,
}Expand description
Representation of an ACF’s file content
Results are returned in the form of a hash map. Valve ACF files are expected
to have a root level entry (AppState) containing the app’s ID, path, name,
and filesystem specific information
Fields§
§entries: Vec<Entry>A list of entries. Valve ACF files should have at least AppState
Trait Implementations§
impl Eq for Acf
impl StructuralPartialEq for Acf
Auto Trait Implementations§
impl Freeze for Acf
impl RefUnwindSafe for Acf
impl Send for Acf
impl Sync for Acf
impl Unpin for Acf
impl UnwindSafe for Acf
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.