pub struct ScheduledTask {
pub timestamp: String,
pub event_id: u32,
pub task_name: Option<String>,
pub task_content: Option<String>,
pub subject_user: Option<String>,
}Expand description
A scheduled task creation or modification event. Produced from EID 4698 (task created) and EID 4702 (task updated).
Fields§
§timestamp: String§event_id: u32§task_name: Option<String>§task_content: Option<String>Raw XML task body; may contain inline script (VBScript/JScript).
subject_user: Option<String>Trait Implementations§
Source§impl Clone for ScheduledTask
impl Clone for ScheduledTask
Source§fn clone(&self) -> ScheduledTask
fn clone(&self) -> ScheduledTask
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 ScheduledTask
impl Debug for ScheduledTask
Source§impl PartialEq for ScheduledTask
impl PartialEq for ScheduledTask
impl StructuralPartialEq for ScheduledTask
Auto Trait Implementations§
impl Freeze for ScheduledTask
impl RefUnwindSafe for ScheduledTask
impl Send for ScheduledTask
impl Sync for ScheduledTask
impl Unpin for ScheduledTask
impl UnsafeUnpin for ScheduledTask
impl UnwindSafe for ScheduledTask
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