pub enum InfValue {
CommaSeparated(Vec<String>),
Raw(String),
List(Vec<String>),
}Expand description
A value in a Windows INF file
Values can be either raw strings or lists of strings. Raw strings are used for simple values, while lists are used for multi-line values or arrays.
Variants§
CommaSeparated(Vec<String>)
Raw(String)
A raw string value
This variant is used for simple string values in the INF file.
List(Vec<String>)
A list of string values
This variant is used for multi-line values or arrays in the INF file.
Trait Implementations§
impl StructuralPartialEq for InfValue
Auto Trait Implementations§
impl Freeze for InfValue
impl RefUnwindSafe for InfValue
impl Send for InfValue
impl Sync for InfValue
impl Unpin for InfValue
impl UnwindSafe for InfValue
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