pub struct CancelCrawlResponse {
pub status: String,
}Expand description
Response from canceling a crawl.
Fields§
§status: StringStatus of the cancellation.
Trait Implementations§
Source§impl Clone for CancelCrawlResponse
impl Clone for CancelCrawlResponse
Source§fn clone(&self) -> CancelCrawlResponse
fn clone(&self) -> CancelCrawlResponse
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 CancelCrawlResponse
impl Debug for CancelCrawlResponse
Source§impl<'de> Deserialize<'de> for CancelCrawlResponse
impl<'de> Deserialize<'de> for CancelCrawlResponse
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 CancelCrawlResponse
impl RefUnwindSafe for CancelCrawlResponse
impl Send for CancelCrawlResponse
impl Sync for CancelCrawlResponse
impl Unpin for CancelCrawlResponse
impl UnsafeUnpin for CancelCrawlResponse
impl UnwindSafe for CancelCrawlResponse
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