pub struct ParseEvent {
pub url: String,
pub text_length: usize,
pub links_count: usize,
pub images_count: usize,
pub duration_ms: u64,
}Expand description
Parse event
Fields§
§url: StringParsed URL
text_length: usizeExtracted text length in characters
links_count: usizeNumber of links found
images_count: usizeNumber of images found
duration_ms: u64Parse duration in milliseconds
Trait Implementations§
Source§impl Debug for ParseEvent
impl Debug for ParseEvent
Auto Trait Implementations§
impl Freeze for ParseEvent
impl RefUnwindSafe for ParseEvent
impl Send for ParseEvent
impl Sync for ParseEvent
impl Unpin for ParseEvent
impl UnwindSafe for ParseEvent
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