Docs.rs
winereg-0.1.0
winereg 0.1.0
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
asLody
Dependencies
anyhow ^1.0.100
normal
chrono ^0.4.42
normal
once_cell ^1.21.3
normal
regex ^1.12.2
normal
thiserror ^1.0
normal
Versions
2.11%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
KeyNode
winereg
0.1.0
KeyNode
Aliased Type
Trait Implementations
RegistryKeyExt
In crate winereg
winereg
Type Alias
KeyNode
Copy item path
Source
pub type KeyNode =
Rc
<
RefCell
<
RegistryKey
>>;
Aliased Type
§
pub struct KeyNode {
/* private fields */
}
Trait Implementations
§
Source
§
impl
RegistryKeyExt
for
KeyNode
Source
§
fn
apply_patch_with
( &self, diff: &
DiffResult
, options:
PatchOptions
, ) ->
PatchResult
Source
§
fn
apply_patch
(&self, diff: &
DiffResult
) ->
PatchResult
Source
§
fn
apply_text_patch
( &self, text: &
str
, options:
PatchOptions
, ) ->
Result
<
PatchResult
,
String
>
Source
§
fn
compare_with
(&self, other: &
KeyNode
) ->
DiffResult
Source
§
fn
export_diff_text
( &self, other: &
KeyNode
, from_file:
Option
<&
str
>, to_file:
Option
<&
str
>, ) ->
String