pub struct OpenOptions<'a> { /* private fields */ }Expand description
Options and flags used to configure how a registry key is opened.
Implementations§
Source§impl<'a> OpenOptions<'a>
impl<'a> OpenOptions<'a>
Sourcepub fn create(&mut self) -> &mut Self
pub fn create(&mut self) -> &mut Self
Sets the option to create a new registry key, or open it if it already exists.
Sourcepub fn transaction(&mut self, transaction: &'a Transaction) -> &mut Self
pub fn transaction(&mut self, transaction: &'a Transaction) -> &mut Self
Associate the registry key with a transaction.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OpenOptions<'a>
impl<'a> RefUnwindSafe for OpenOptions<'a>
impl<'a> !Send for OpenOptions<'a>
impl<'a> !Sync for OpenOptions<'a>
impl<'a> Unpin for OpenOptions<'a>
impl<'a> UnwindSafe for OpenOptions<'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