pub struct Win32_ShadowProvider {
pub ID: Option<String>,
pub Name: Option<String>,
pub CLSID: Option<String>,
pub Type: Option<u32>,
pub Version: Option<String>,
pub VersionID: Option<String>,
}Expand description
Typically, the Win32_ShadowProvider class represents a component that is a combination of user-mode
and kernel or firmware implementation, that creates and represents volume shadow copies.
https://learn.microsoft.com/en-us/previous-versions/windows/desktop/vsswmi/win32-shadowprovider
Fields§
§ID: Option<String>Uniquely identifies the shadow provider on a system.
Name: Option<String>Descriptive name of a provider.
CLSID: Option<String>Common Object Model (COM) class ID registered for a shadow provider.
Type: Option<u32>Specifies the class to which a shadow provider belongs.
Possible values:
Value: Meaning
- 0: Unknown
- 1: System
- 2: Software
- 3: Hardware
Version: Option<String>Text representation of a shadow provider version.
VersionID: Option<String>Numeric representation of a shadow provider version.
Trait Implementations§
Source§impl Clone for Win32_ShadowProvider
impl Clone for Win32_ShadowProvider
Source§fn clone(&self) -> Win32_ShadowProvider
fn clone(&self) -> Win32_ShadowProvider
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 Win32_ShadowProvider
impl Debug for Win32_ShadowProvider
Source§impl Default for Win32_ShadowProvider
impl Default for Win32_ShadowProvider
Source§fn default() -> Win32_ShadowProvider
fn default() -> Win32_ShadowProvider
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Win32_ShadowProvider
impl<'de> Deserialize<'de> for Win32_ShadowProvider
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Win32_ShadowProvider
impl RefUnwindSafe for Win32_ShadowProvider
impl Send for Win32_ShadowProvider
impl Sync for Win32_ShadowProvider
impl Unpin for Win32_ShadowProvider
impl UnwindSafe for Win32_ShadowProvider
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