pub struct RegistryKeyInfo {
pub subkeys: u32,
pub max_subkey_name_length: u32,
pub values: u32,
pub max_value_name_length: u32,
pub max_value_length: u32,
pub last_write_time: Filetime,
}Fields§
§subkeys: u32§max_subkey_name_length: u32§values: u32§max_value_name_length: u32§max_value_length: u32§last_write_time: FiletimeTrait Implementations§
Source§impl Clone for RegistryKeyInfo
impl Clone for RegistryKeyInfo
Source§fn clone(&self) -> RegistryKeyInfo
fn clone(&self) -> RegistryKeyInfo
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 RegistryKeyInfo
impl Debug for RegistryKeyInfo
Source§impl Default for RegistryKeyInfo
impl Default for RegistryKeyInfo
Source§fn default() -> RegistryKeyInfo
fn default() -> RegistryKeyInfo
Returns the “default value” for a type. Read more
impl Copy for RegistryKeyInfo
Auto Trait Implementations§
impl Freeze for RegistryKeyInfo
impl RefUnwindSafe for RegistryKeyInfo
impl Send for RegistryKeyInfo
impl Sync for RegistryKeyInfo
impl Unpin for RegistryKeyInfo
impl UnwindSafe for RegistryKeyInfo
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