pub struct ScanResult {
pub url: Url,
pub wordpress_detected: bool,
pub wordpress_version: Option<String>,
pub wordpress_latest: Option<String>,
pub theme: Option<ThemeInfo>,
pub plugins: Vec<PluginInfo>,
}Expand description
Scan results from analyzing a WordPress site
Fields§
§url: UrlTarget URL
wordpress_detected: boolWhether WordPress was detected (even without version)
wordpress_version: Option<String>WordPress version if detected
wordpress_latest: Option<String>Latest WordPress version
theme: Option<ThemeInfo>Main theme if detected
plugins: Vec<PluginInfo>Detected plugins
Trait Implementations§
Source§impl Clone for ScanResult
impl Clone for ScanResult
Source§fn clone(&self) -> ScanResult
fn clone(&self) -> ScanResult
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 ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnwindSafe for ScanResult
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