pub struct SmartBrowseDispatch {
pub run_id: String,
pub recipe_id: String,
pub run_status: RunStatus,
pub poll_url: Option<String>,
pub created_at: Option<String>,
}Expand description
data returned when dispatching a SmartBrowse run (HTTP 202 queued).
Fields§
§run_id: StringOpaque run id to poll.
recipe_id: StringThe recipe that was run.
run_status: RunStatusRun lifecycle state (always running on dispatch).
poll_url: Option<String>Relative poll URL, e.g. /v1/smartbrowse/runs/{id}.
created_at: Option<String>Dispatch timestamp (RFC3339).
Trait Implementations§
Source§impl Clone for SmartBrowseDispatch
impl Clone for SmartBrowseDispatch
Source§fn clone(&self) -> SmartBrowseDispatch
fn clone(&self) -> SmartBrowseDispatch
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 SmartBrowseDispatch
impl Debug for SmartBrowseDispatch
Source§impl<'de> Deserialize<'de> for SmartBrowseDispatch
impl<'de> Deserialize<'de> for SmartBrowseDispatch
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 SmartBrowseDispatch
impl RefUnwindSafe for SmartBrowseDispatch
impl Send for SmartBrowseDispatch
impl Sync for SmartBrowseDispatch
impl Unpin for SmartBrowseDispatch
impl UnsafeUnpin for SmartBrowseDispatch
impl UnwindSafe for SmartBrowseDispatch
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