pub struct CrawlList {
pub crawls: Vec<CrawlJob>,
pub extra: Extra,
}Expand description
GET /v1/crawl → {crawls: [CrawlJob…]}. Not a crate::Page: this
endpoint answers a named object, mirroring the daemon’s other non-envelope list
(/v1/data).
Fields§
§crawls: Vec<CrawlJob>§extra: ExtraTrait Implementations§
Source§impl<'de> Deserialize<'de> for CrawlList
impl<'de> Deserialize<'de> for CrawlList
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 CrawlList
impl RefUnwindSafe for CrawlList
impl Send for CrawlList
impl Sync for CrawlList
impl Unpin for CrawlList
impl UnsafeUnpin for CrawlList
impl UnwindSafe for CrawlList
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