pub struct CrawlerArtifact {
pub artifact_type: CrawlerArtifactType,
pub data: Bytes,
}Expand description
WARC or HAR artifact downloaded from the crawler endpoint.
Fields§
§artifact_type: CrawlerArtifactTypeArtifact type.
data: BytesRaw bytes.
Implementations§
Trait Implementations§
Source§impl Clone for CrawlerArtifact
impl Clone for CrawlerArtifact
Source§fn clone(&self) -> CrawlerArtifact
fn clone(&self) -> CrawlerArtifact
Returns a duplicate 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 moreAuto Trait Implementations§
impl !Freeze for CrawlerArtifact
impl RefUnwindSafe for CrawlerArtifact
impl Send for CrawlerArtifact
impl Sync for CrawlerArtifact
impl Unpin for CrawlerArtifact
impl UnsafeUnpin for CrawlerArtifact
impl UnwindSafe for CrawlerArtifact
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