pub struct ExecutionResponse {
pub id: String,
pub success: bool,
pub result: Option<ExecutionResult>,
pub errors: Vec<ValidationError>,
pub execution_time: u64,
}Fields§
§id: String§success: bool§result: Option<ExecutionResult>§errors: Vec<ValidationError>§execution_time: u64Trait Implementations§
Source§impl Clone for ExecutionResponse
impl Clone for ExecutionResponse
Source§fn clone(&self) -> ExecutionResponse
fn clone(&self) -> ExecutionResponse
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 ExecutionResponse
impl Debug for ExecutionResponse
Source§impl<'de> Deserialize<'de> for ExecutionResponse
impl<'de> Deserialize<'de> for ExecutionResponse
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 ExecutionResponse
impl RefUnwindSafe for ExecutionResponse
impl Send for ExecutionResponse
impl Sync for ExecutionResponse
impl Unpin for ExecutionResponse
impl UnwindSafe for ExecutionResponse
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