#[non_exhaustive]pub struct CrawledUrl {
pub http_method: String,
pub url: String,
pub body: String,
/* private fields */
}Expand description
A CrawledUrl resource represents a URL that was crawled during a ScanRun. Web Security Scanner Service crawls the web applications, following all links within the scope of sites, to find the URLs to test against.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.http_method: StringOutput only. The http method of the request that was used to visit the URL, in uppercase.
url: StringOutput only. The URL that was crawled.
body: StringOutput only. The body of the request that was used to visit the URL.
Implementations§
Trait Implementations§
Source§impl Clone for CrawledUrl
impl Clone for CrawledUrl
Source§fn clone(&self) -> CrawledUrl
fn clone(&self) -> CrawledUrl
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 moreSource§impl Debug for CrawledUrl
impl Debug for CrawledUrl
Source§impl Default for CrawledUrl
impl Default for CrawledUrl
Source§fn default() -> CrawledUrl
fn default() -> CrawledUrl
Returns the “default value” for a type. Read more
Source§impl PartialEq for CrawledUrl
impl PartialEq for CrawledUrl
impl StructuralPartialEq for CrawledUrl
Auto Trait Implementations§
impl Freeze for CrawledUrl
impl RefUnwindSafe for CrawledUrl
impl Send for CrawledUrl
impl Sync for CrawledUrl
impl Unpin for CrawledUrl
impl UnwindSafe for CrawledUrl
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