pub struct WordPressAnalysis {
pub confidence: String,
pub version: String,
pub theme: String,
pub plugins: Vec<String>,
pub users_found: Vec<WpUser>,
pub rest_api_enabled: bool,
pub xmlrpc_enabled: bool,
pub admin_accessible: bool,
pub login_accessible: bool,
pub debug_enabled: bool,
pub security_issues: Vec<String>,
}Available on crate feature
web-technologies only.Fields§
§confidence: String§version: String§theme: String§plugins: Vec<String>§users_found: Vec<WpUser>§rest_api_enabled: bool§xmlrpc_enabled: bool§admin_accessible: bool§login_accessible: bool§debug_enabled: bool§security_issues: Vec<String>Trait Implementations§
Source§impl Clone for WordPressAnalysis
impl Clone for WordPressAnalysis
Source§fn clone(&self) -> WordPressAnalysis
fn clone(&self) -> WordPressAnalysis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WordPressAnalysis
impl Debug for WordPressAnalysis
Source§impl<'de> Deserialize<'de> for WordPressAnalysis
impl<'de> Deserialize<'de> for WordPressAnalysis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WordPressAnalysis
impl RefUnwindSafe for WordPressAnalysis
impl Send for WordPressAnalysis
impl Sync for WordPressAnalysis
impl Unpin for WordPressAnalysis
impl UnsafeUnpin for WordPressAnalysis
impl UnwindSafe for WordPressAnalysis
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