pub struct ExecutionsResponse {
pub executions: Vec<Execution>,
}Expand description
Response wrapper for GET /v1/accounts/:id/executions.
Fields§
§executions: Vec<Execution>Execution records for the requested date range.
Trait Implementations§
Source§impl Debug for ExecutionsResponse
impl Debug for ExecutionsResponse
Source§impl<'de> Deserialize<'de> for ExecutionsResponse
impl<'de> Deserialize<'de> for ExecutionsResponse
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 ExecutionsResponse
impl RefUnwindSafe for ExecutionsResponse
impl Send for ExecutionsResponse
impl Sync for ExecutionsResponse
impl Unpin for ExecutionsResponse
impl UnsafeUnpin for ExecutionsResponse
impl UnwindSafe for ExecutionsResponse
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