#[non_exhaustive]pub struct WinWinResource {Show 16 fields
pub created_time: Option<i64>,
pub created_time_dt: Option<String>,
pub data: Option<Value>,
pub data_classification: Option<Box<DataClassification>>,
pub data_classifications: Option<Vec<DataClassification>>,
pub details: Option<String>,
pub labels: Option<Vec<String>>,
pub modified_time: Option<i64>,
pub modified_time_dt: Option<String>,
pub name: Option<String>,
pub svc_name: Option<String>,
pub tags: Option<Vec<KeyValueObject>>,
pub type: Option<String>,
pub type_id: Option<i64>,
pub uid: Option<String>,
pub uid_alt: Option<String>,
}Expand description
Windows Resource
The Windows resource object describes a resource object managed by Windows, such as mutant or timer.
[] Category: | Name: win_resource
Constraints:
- at_least_one:
[name,uid]
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created_time: Option<i64>Created Time
The time when the resource was created.
optional
created_time_dt: Option<String>Created Time
The time when the resource was created.
optional
data: Option<Value>Data
Additional data describing the resource.
optional
data_classification: Option<Box<DataClassification>>Data Classification
The Data Classification object includes information about data classification levels and data category types.
recommended
data_classifications: Option<Vec<DataClassification>>Data Classification
A list of Data Classification objects, that include information about data classification levels and data category types, identified by a classifier.
recommended
details: Option<String>Details
The string detailing the attributes of the resource object.
optional
labels: Option<Vec<String>>Labels
The list of labels associated to the resource.
optional
modified_time: Option<i64>Modified Time
The time when the resource was last modified.
optional
modified_time_dt: Option<String>Modified Time
The time when the resource was last modified.
optional
name: Option<String>Name
The name of the resource object.
recommended
svc_name: Option<String>Service Name
The Windows service acting as the object server for the resource object, such as Security or Security Account Manager.
optional
Tags
The list of tags; {key:value} pairs associated to the resource.
optional
type: Option<String>Type
The type of the Windows resource object.
optional
type_id: Option<i64>Type ID
The normalized type identifier of the Windows resource object accessed.
required
uid: Option<String>Unique ID
The Windows provided handle identifier for the resource object
recommended
uid_alt: Option<String>Alternate ID
The alternative unique identifier of the resource.
optional
Trait Implementations§
Source§impl Clone for WinWinResource
impl Clone for WinWinResource
Source§fn clone(&self) -> WinWinResource
fn clone(&self) -> WinWinResource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more