pub struct InfSection {
pub name: String,
pub entries: Vec<InfEntry>,
}Expand description
A section in a Windows INF file
Each section in an INF file has a name and contains a list of entries. Entries can be either key-value pairs or standalone values.
Fields§
§name: StringThe name of the section
entries: Vec<InfEntry>The entries contained in this section
Trait Implementations§
Source§impl Clone for InfSection
impl Clone for InfSection
Source§fn clone(&self) -> InfSection
fn clone(&self) -> InfSection
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 InfSection
impl Debug for InfSection
Source§impl PartialEq for InfSection
impl PartialEq for InfSection
impl StructuralPartialEq for InfSection
Auto Trait Implementations§
impl Freeze for InfSection
impl RefUnwindSafe for InfSection
impl Send for InfSection
impl Sync for InfSection
impl Unpin for InfSection
impl UnwindSafe for InfSection
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