pub struct CostAttributionQuery {
pub capability_id: Option<String>,
pub agent_subject: Option<String>,
pub tool_server: Option<String>,
pub tool_name: Option<String>,
pub since: Option<u64>,
pub until: Option<u64>,
pub limit: Option<usize>,
}Expand description
Query parameters for delegation-chain cost attribution reporting.
Fields§
§capability_id: Option<String>§agent_subject: Option<String>§tool_server: Option<String>§tool_name: Option<String>§since: Option<u64>§until: Option<u64>§limit: Option<usize>Trait Implementations§
Source§impl Clone for CostAttributionQuery
impl Clone for CostAttributionQuery
Source§fn clone(&self) -> CostAttributionQuery
fn clone(&self) -> CostAttributionQuery
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 CostAttributionQuery
impl Debug for CostAttributionQuery
Source§impl Default for CostAttributionQuery
impl Default for CostAttributionQuery
Source§impl<'de> Deserialize<'de> for CostAttributionQuery
impl<'de> Deserialize<'de> for CostAttributionQuery
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 CostAttributionQuery
impl RefUnwindSafe for CostAttributionQuery
impl Send for CostAttributionQuery
impl Sync for CostAttributionQuery
impl Unpin for CostAttributionQuery
impl UnsafeUnpin for CostAttributionQuery
impl UnwindSafe for CostAttributionQuery
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