pub struct FileInfo<'a> {
pub fixed: Option<&'a VS_FIXEDFILEINFO>,
pub strings: HashMap<Language, HashMap<String, String>>,
pub langs: &'a [Language],
/* private fields */
}Expand description
VersionInfo parsed into HashMaps.
Fields§
§fixed: Option<&'a VS_FIXEDFILEINFO>§strings: HashMap<Language, HashMap<String, String>>§langs: &'a [Language]Trait Implementations§
Source§impl<'a> Visit<'a> for FileInfo<'a>
impl<'a> Visit<'a> for FileInfo<'a>
fn version_info( &mut self, _key: &'a [u16], fixed: Option<&'a VS_FIXEDFILEINFO>, ) -> bool
fn string_table(&mut self, lang: &'a [u16]) -> bool
fn string(&mut self, key: &'a [u16], value: &'a [u16])
fn var(&mut self, key: &'a [u16], value: &'a [u16])
fn file_info(&mut self, key: &'a [u16]) -> bool
fn enter_scope(&mut self, depth: usize)
fn exit_scope(&mut self, depth: usize)
Auto Trait Implementations§
impl<'a> Freeze for FileInfo<'a>
impl<'a> RefUnwindSafe for FileInfo<'a>
impl<'a> Send for FileInfo<'a>
impl<'a> Sync for FileInfo<'a>
impl<'a> Unpin for FileInfo<'a>
impl<'a> UnwindSafe for FileInfo<'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