pub struct DlqQuery {
pub error_category: Option<String>,
pub trace_id: Option<String>,
pub from: Option<Vec<u8>>,
pub limit: Option<u32>,
pub created_after: Option<DateTime<Utc>>,
}Expand description
Query filter for DLQ records
Fields§
§error_category: Option<String>Filter by error category
trace_id: Option<String>Filter by trace_id
from: Option<Vec<u8>>Filter by sender ActrId (exact match on bytes)
limit: Option<u32>Maximum number of records to return
created_after: Option<DateTime<Utc>>Return only messages created after this timestamp
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DlqQuery
impl RefUnwindSafe for DlqQuery
impl Send for DlqQuery
impl Sync for DlqQuery
impl Unpin for DlqQuery
impl UnsafeUnpin for DlqQuery
impl UnwindSafe for DlqQuery
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