pub struct ScrapeResult {
pub uuid: String,
pub config: Value,
pub context: Value,
pub result: ResultData,
}Expand description
Response envelope from POST /scrape.
Fields§
§uuid: StringUUID of the scrape.
config: ValueEcho of the config the server used.
context: ValueExecution context (cost, proxy, cache…).
result: ResultDataResult data.
Trait Implementations§
Source§impl Clone for ScrapeResult
impl Clone for ScrapeResult
Source§fn clone(&self) -> ScrapeResult
fn clone(&self) -> ScrapeResult
Returns a copy 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 ScrapeResult
impl Debug for ScrapeResult
Source§impl<'de> Deserialize<'de> for ScrapeResult
impl<'de> Deserialize<'de> for ScrapeResult
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 ScrapeResult
impl RefUnwindSafe for ScrapeResult
impl Send for ScrapeResult
impl Sync for ScrapeResult
impl Unpin for ScrapeResult
impl UnwindSafe for ScrapeResult
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