pub struct AskOptions {
pub limit: usize,
pub include_superseded: bool,
pub branch: Option<String>,
pub impact: bool,
pub after: Option<String>,
pub before: Option<String>,
pub tags: Vec<String>,
pub village_id: Option<String>,
}Fields§
§limit: usize§include_superseded: bool§branch: Option<String>§impact: bool§after: Option<String>ISO 8601 lower bound (inclusive) for temporal filtering.
before: Option<String>ISO 8601 upper bound (inclusive) for temporal filtering.
Filter decisions whose tags contain any of these values (OR semantics).
village_id: Option<String>Filter decisions belonging to a specific village.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AskOptions
impl RefUnwindSafe for AskOptions
impl Send for AskOptions
impl Sync for AskOptions
impl Unpin for AskOptions
impl UnsafeUnpin for AskOptions
impl UnwindSafe for AskOptions
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