pub struct ShadowContexts {
pub shadow_contexts: Vec<Win32_ShadowContext>,
pub last_updated: SystemTime,
}Expand description
Represents the state of Windows ShadowContexts
Fields§
§shadow_contexts: Vec<Win32_ShadowContext>Represents sequence of ShadowContexts
last_updated: SystemTimeWhen was the record last updated
Implementations§
Source§impl ShadowContexts
impl ShadowContexts
Sourcepub async fn async_update(&mut self)
pub async fn async_update(&mut self)
Update fields asynchronously
Trait Implementations§
Source§impl Clone for ShadowContexts
impl Clone for ShadowContexts
Source§fn clone(&self) -> ShadowContexts
fn clone(&self) -> ShadowContexts
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 ShadowContexts
impl Debug for ShadowContexts
Source§impl Default for ShadowContexts
impl Default for ShadowContexts
Source§impl<'de> Deserialize<'de> for ShadowContexts
impl<'de> Deserialize<'de> for ShadowContexts
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 ShadowContexts
impl RefUnwindSafe for ShadowContexts
impl Send for ShadowContexts
impl Sync for ShadowContexts
impl Unpin for ShadowContexts
impl UnwindSafe for ShadowContexts
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