pub struct RunCanvasLoopResponse {
pub mission_id: String,
pub team_id: String,
pub worker_count: i64,
pub max_passes: i64,
pub budget_usd: f64,
pub time_minutes: f64,
}Expand description
RunCanvasLoopResponse model.
Fields§
§mission_id: String§team_id: String§worker_count: i64§max_passes: i64§budget_usd: f64§time_minutes: f64Trait Implementations§
Source§impl Clone for RunCanvasLoopResponse
impl Clone for RunCanvasLoopResponse
Source§fn clone(&self) -> RunCanvasLoopResponse
fn clone(&self) -> RunCanvasLoopResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunCanvasLoopResponse
impl Debug for RunCanvasLoopResponse
Source§impl Default for RunCanvasLoopResponse
impl Default for RunCanvasLoopResponse
Source§fn default() -> RunCanvasLoopResponse
fn default() -> RunCanvasLoopResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunCanvasLoopResponse
impl<'de> Deserialize<'de> for RunCanvasLoopResponse
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 RunCanvasLoopResponse
impl PartialEq for RunCanvasLoopResponse
Source§impl Serialize for RunCanvasLoopResponse
impl Serialize for RunCanvasLoopResponse
impl StructuralPartialEq for RunCanvasLoopResponse
Auto Trait Implementations§
impl Freeze for RunCanvasLoopResponse
impl RefUnwindSafe for RunCanvasLoopResponse
impl Send for RunCanvasLoopResponse
impl Sync for RunCanvasLoopResponse
impl Unpin for RunCanvasLoopResponse
impl UnsafeUnpin for RunCanvasLoopResponse
impl UnwindSafe for RunCanvasLoopResponse
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