pub struct ListHelpQuery {
pub agent: Option<String>,
pub pipeline: Option<String>,
pub blocker: Option<Blocker>,
pub open: Option<bool>,
pub window: Option<CostWindow>,
}Expand description
query parameters for listHelp.
Fields§
§agent: Option<String>Only requests from this agent.
pipeline: Option<String>Only requests raised by a run of this workflow.
blocker: Option<Blocker>Only requests of this kind.
open: Option<bool>Only requests nobody has dealt with yet.
window: Option<CostWindow>How far back to look. Defaults to the last 30 days.
Trait Implementations§
Source§impl Clone for ListHelpQuery
impl Clone for ListHelpQuery
Source§impl Debug for ListHelpQuery
impl Debug for ListHelpQuery
Source§impl<'de> Deserialize<'de> for ListHelpQuery
impl<'de> Deserialize<'de> for ListHelpQuery
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 ListHelpQuery
impl PartialEq for ListHelpQuery
Source§impl Serialize for ListHelpQuery
impl Serialize for ListHelpQuery
impl StructuralPartialEq for ListHelpQuery
Auto Trait Implementations§
impl Freeze for ListHelpQuery
impl RefUnwindSafe for ListHelpQuery
impl Send for ListHelpQuery
impl Sync for ListHelpQuery
impl Unpin for ListHelpQuery
impl UnsafeUnpin for ListHelpQuery
impl UnwindSafe for ListHelpQuery
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