pub struct ParseResult<R>where
R: Debug,{ /* private fields */ }
Expand description
The result of the robots.txt parser.
Implementations§
Source§impl<R> ParseResult<R>where
R: Debug,
impl<R> ParseResult<R>where
R: Debug,
Sourcepub fn get_result(self) -> R
pub fn get_result(self) -> R
Returns the result of the robots.txt parser.
Sourcepub fn get_warnings(&self) -> &[ParseWarning]
pub fn get_warnings(&self) -> &[ParseWarning]
Returns the robots.txt parser warning array.
Sourcepub fn ok_ref(&self) -> Result<&R, &ParseWarning>
pub fn ok_ref(&self) -> Result<&R, &ParseWarning>
Returns reference to result of the robots.txt parser or first warning.
Sourcepub fn ok(self) -> Result<R, ParseWarning>
pub fn ok(self) -> Result<R, ParseWarning>
Returns the result of the robots.txt parser or first warning.
Trait Implementations§
Auto Trait Implementations§
impl<R> Freeze for ParseResult<R>where
R: Freeze,
impl<R> RefUnwindSafe for ParseResult<R>where
R: RefUnwindSafe,
impl<R> Send for ParseResult<R>where
R: Send,
impl<R> Sync for ParseResult<R>where
R: Sync,
impl<R> Unpin for ParseResult<R>where
R: Unpin,
impl<R> UnwindSafe for ParseResult<R>where
R: UnwindSafe,
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