pub struct WorkspaceChecksOptsBuilder<'a> { /* private fields */ }Expand description
Builder for WorkspaceChecksOpts.
Implementations§
Source§impl<'a> WorkspaceChecksOptsBuilder<'a>
impl<'a> WorkspaceChecksOptsBuilder<'a>
Sourcepub fn include<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
pub fn include<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
Only include checks matching the specified patterns
Sourcepub fn no_generate<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn no_generate<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
When true, only return annotated check functions; exclude generate-as-checks
Sourcepub fn only_generate<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
pub fn only_generate<VALUE: Into<bool>>(&mut self, value: VALUE) -> &mut Self
When true, only return generate-as-checks; exclude annotated check functions
Sourcepub fn skip<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
pub fn skip<VALUE: Into<Vec<&'a str>>>(&mut self, value: VALUE) -> &mut Self
Skip checks matching the specified patterns
Sourcepub fn build(
&self,
) -> Result<WorkspaceChecksOpts<'a>, WorkspaceChecksOptsBuilderError>
pub fn build( &self, ) -> Result<WorkspaceChecksOpts<'a>, WorkspaceChecksOptsBuilderError>
Trait Implementations§
Source§impl<'a> Clone for WorkspaceChecksOptsBuilder<'a>
impl<'a> Clone for WorkspaceChecksOptsBuilder<'a>
Source§fn clone(&self) -> WorkspaceChecksOptsBuilder<'a>
fn clone(&self) -> WorkspaceChecksOptsBuilder<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for WorkspaceChecksOptsBuilder<'a>
impl<'a> RefUnwindSafe for WorkspaceChecksOptsBuilder<'a>
impl<'a> Send for WorkspaceChecksOptsBuilder<'a>
impl<'a> Sync for WorkspaceChecksOptsBuilder<'a>
impl<'a> Unpin for WorkspaceChecksOptsBuilder<'a>
impl<'a> UnsafeUnpin for WorkspaceChecksOptsBuilder<'a>
impl<'a> UnwindSafe for WorkspaceChecksOptsBuilder<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more