pub struct ProcessSessionDeleteReport {
pub session_id: String,
pub revoked_handle_count: usize,
pub deleted_wake_count: usize,
pub cancel_process_ids: Vec<String>,
pub preserved_process_ids: Vec<String>,
}Fields§
§session_id: String§revoked_handle_count: usize§deleted_wake_count: usize§cancel_process_ids: Vec<String>§preserved_process_ids: Vec<String>Trait Implementations§
Source§impl Clone for ProcessSessionDeleteReport
impl Clone for ProcessSessionDeleteReport
Source§fn clone(&self) -> ProcessSessionDeleteReport
fn clone(&self) -> ProcessSessionDeleteReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcessSessionDeleteReport
impl Debug for ProcessSessionDeleteReport
Source§impl Default for ProcessSessionDeleteReport
impl Default for ProcessSessionDeleteReport
Source§fn default() -> ProcessSessionDeleteReport
fn default() -> ProcessSessionDeleteReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessSessionDeleteReport
impl<'de> Deserialize<'de> for ProcessSessionDeleteReport
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
impl Eq for ProcessSessionDeleteReport
Source§impl PartialEq for ProcessSessionDeleteReport
impl PartialEq for ProcessSessionDeleteReport
Source§fn eq(&self, other: &ProcessSessionDeleteReport) -> bool
fn eq(&self, other: &ProcessSessionDeleteReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessSessionDeleteReport
Auto Trait Implementations§
impl Freeze for ProcessSessionDeleteReport
impl RefUnwindSafe for ProcessSessionDeleteReport
impl Send for ProcessSessionDeleteReport
impl Sync for ProcessSessionDeleteReport
impl Unpin for ProcessSessionDeleteReport
impl UnsafeUnpin for ProcessSessionDeleteReport
impl UnwindSafe for ProcessSessionDeleteReport
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