pub struct ControlSetResolver {
pub sets: Vec<String>,
}Expand description
The set of ControlSet00N names a CurrentControlSet segment expands to,
resolved from SYSTEM\Select\Current.
Normally a single active set; absent/unreadable Select\Current degrades to
ControlSet001 (see resolve_control_sets).
Fields§
§sets: Vec<String>The concrete ControlSet00N names the alias resolves to (in expansion
order). At least one element.
Trait Implementations§
Source§impl Clone for ControlSetResolver
impl Clone for ControlSetResolver
Source§fn clone(&self) -> ControlSetResolver
fn clone(&self) -> ControlSetResolver
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ControlSetResolver
impl RefUnwindSafe for ControlSetResolver
impl Send for ControlSetResolver
impl Sync for ControlSetResolver
impl Unpin for ControlSetResolver
impl UnsafeUnpin for ControlSetResolver
impl UnwindSafe for ControlSetResolver
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