pub struct Services {
pub services: Vec<Win32_Service>,
pub last_updated: SystemTime,
}Expand description
Represents the state of Windows Drivers
Fields§
§services: Vec<Win32_Service>Sequence of Drivers based on when they were loaded in chronological order
last_updated: SystemTimeWhen was the record last updated
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Services
impl<'de> Deserialize<'de> for Services
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 Services
impl RefUnwindSafe for Services
impl Send for Services
impl Sync for Services
impl Unpin for Services
impl UnwindSafe for Services
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