pub struct ExecHistory {
pub id: Option<i32>,
pub job_name: Option<String>,
pub job_kind: Option<String>,
pub job_parameters: Option<String>,
pub schedule: Option<Box<ScheduleObj>>,
pub job_status: Option<String>,
pub deleted: Option<bool>,
pub creation_time: Option<String>,
pub update_time: Option<String>,
}Fields§
§id: Option<i32>the id of purge job.
job_name: Option<String>the job name of purge job.
job_kind: Option<String>the job kind of purge job.
job_parameters: Option<String>the job parameters of purge job.
schedule: Option<Box<ScheduleObj>>§job_status: Option<String>the status of purge job.
deleted: Option<bool>if purge job was deleted.
creation_time: Option<String>the creation time of purge job.
update_time: Option<String>the update time of purge job.
Implementations§
Source§impl ExecHistory
impl ExecHistory
pub fn new() -> ExecHistory
Trait Implementations§
Source§impl Clone for ExecHistory
impl Clone for ExecHistory
Source§fn clone(&self) -> ExecHistory
fn clone(&self) -> ExecHistory
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 ExecHistory
impl Debug for ExecHistory
Source§impl Default for ExecHistory
impl Default for ExecHistory
Source§fn default() -> ExecHistory
fn default() -> ExecHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecHistory
impl<'de> Deserialize<'de> for ExecHistory
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
Source§impl PartialEq for ExecHistory
impl PartialEq for ExecHistory
Source§impl Serialize for ExecHistory
impl Serialize for ExecHistory
impl StructuralPartialEq for ExecHistory
Auto Trait Implementations§
impl Freeze for ExecHistory
impl RefUnwindSafe for ExecHistory
impl Send for ExecHistory
impl Sync for ExecHistory
impl Unpin for ExecHistory
impl UnwindSafe for ExecHistory
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