pub struct Preferences<'a> {
pub server_preferences: ServerPreferences<'a>,
pub plugins_preferences: (),
}
Expand description
Represents the <Preferences>
element within a scan policy.
This acts as a container for both server-level and plugin-specific preferences that define the scan’s behavior.
Fields§
§server_preferences: ServerPreferences<'a>
A collection of server-wide settings for the scan.
plugins_preferences: ()
A collection of preferences specific to individual plugins.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Preferences<'a>
impl<'a> RefUnwindSafe for Preferences<'a>
impl<'a> Send for Preferences<'a>
impl<'a> Sync for Preferences<'a>
impl<'a> Unpin for Preferences<'a>
impl<'a> UnwindSafe for Preferences<'a>
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