pub struct LintErrors { /* private fields */ }Available on crate features
generators and linter only.Expand description
Get lint errors
See API documentation for more details.
Implementations§
Source§impl LintErrors
impl LintErrors
pub fn new() -> Self
pub fn categories(self, value: impl Into<Vec<String>>) -> Self
pub fn with_categories(self, value: impl Into<Option<Vec<String>>>) -> Self
pub fn set_categories(&mut self, value: impl Into<Option<Vec<String>>>)
pub fn invisible_categories(self, value: impl Into<Vec<String>>) -> Self
pub fn with_invisible_categories( self, value: impl Into<Option<Vec<String>>>, ) -> Self
pub fn set_invisible_categories( &mut self, value: impl Into<Option<Vec<String>>>, )
pub fn namespaces(self, value: impl Into<Vec<u32>>) -> Self
pub fn with_namespaces(self, value: impl Into<Option<Vec<u32>>>) -> Self
pub fn set_namespaces(&mut self, value: impl Into<Option<Vec<u32>>>)
pub fn page_id(self, value: impl Into<u64>) -> Self
pub fn with_page_id(self, value: impl Into<Option<u64>>) -> Self
pub fn set_page_id(&mut self, value: impl Into<Option<u64>>)
pub fn from(self, value: impl Into<u64>) -> Self
pub fn with_from(self, value: impl Into<Option<u64>>) -> Self
pub fn set_from(&mut self, value: impl Into<Option<u64>>)
Trait Implementations§
Source§impl Generator for LintErrors
impl Generator for LintErrors
Auto Trait Implementations§
impl Freeze for LintErrors
impl RefUnwindSafe for LintErrors
impl Send for LintErrors
impl Sync for LintErrors
impl Unpin for LintErrors
impl UnsafeUnpin for LintErrors
impl UnwindSafe for LintErrors
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