pub struct ExecutionLogQuery {
pub event_name: Option<String>,
pub execution_type: Option<ExecutionType>,
pub status: Option<ExecutionStatus>,
pub since: Option<SystemTime>,
pub until: Option<SystemTime>,
pub limit: Option<usize>,
pub offset: Option<usize>,
}Expand description
执行日志查询过滤器。
Fields§
§event_name: Option<String>按事件名称过滤。
execution_type: Option<ExecutionType>按执行类型过滤。
status: Option<ExecutionStatus>按执行状态过滤。
since: Option<SystemTime>查询起始时间。
until: Option<SystemTime>查询截止时间。
limit: Option<usize>最大返回数量。
offset: Option<usize>分页偏移。
Trait Implementations§
Source§impl Clone for ExecutionLogQuery
impl Clone for ExecutionLogQuery
Source§fn clone(&self) -> ExecutionLogQuery
fn clone(&self) -> ExecutionLogQuery
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 ExecutionLogQuery
impl Debug for ExecutionLogQuery
Source§impl Default for ExecutionLogQuery
impl Default for ExecutionLogQuery
Source§fn default() -> ExecutionLogQuery
fn default() -> ExecutionLogQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionLogQuery
impl<'de> Deserialize<'de> for ExecutionLogQuery
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 ExecutionLogQuery
impl RefUnwindSafe for ExecutionLogQuery
impl Send for ExecutionLogQuery
impl Sync for ExecutionLogQuery
impl Unpin for ExecutionLogQuery
impl UnsafeUnpin for ExecutionLogQuery
impl UnwindSafe for ExecutionLogQuery
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