pub struct AgentJobsResponse {
pub ok: Option<bool>,
pub jobs: Vec<AgentJob>,
pub total: Option<u64>,
pub categories: Option<Vec<String>>,
}Expand description
Agent Economy jobs list response.
Fields§
§ok: Option<bool>Whether the request succeeded.
jobs: Vec<AgentJob>List of jobs.
total: Option<u64>Total count of matching jobs.
categories: Option<Vec<String>>Available job categories.
Trait Implementations§
Source§impl Clone for AgentJobsResponse
impl Clone for AgentJobsResponse
Source§fn clone(&self) -> AgentJobsResponse
fn clone(&self) -> AgentJobsResponse
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 AgentJobsResponse
impl Debug for AgentJobsResponse
Source§impl<'de> Deserialize<'de> for AgentJobsResponse
impl<'de> Deserialize<'de> for AgentJobsResponse
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 AgentJobsResponse
impl RefUnwindSafe for AgentJobsResponse
impl Send for AgentJobsResponse
impl Sync for AgentJobsResponse
impl Unpin for AgentJobsResponse
impl UnsafeUnpin for AgentJobsResponse
impl UnwindSafe for AgentJobsResponse
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