pub struct Registry { /* private fields */ }Implementations§
Source§impl Registry
impl Registry
pub fn empty() -> Self
pub fn from_checks(checks: Vec<Box<dyn Check>>) -> Self
pub fn builtin() -> Self
pub fn checks(&self) -> impl Iterator<Item = &dyn Check>
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn run_all(&self, ctx: &Context) -> Vec<Finding>
Auto Trait Implementations§
impl Freeze for Registry
impl !RefUnwindSafe for Registry
impl Send for Registry
impl Sync for Registry
impl Unpin for Registry
impl UnsafeUnpin for Registry
impl !UnwindSafe for Registry
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