#[non_exhaustive]pub struct SuggestedFixBuilder { /* private fields */ }
Expand description
A builder for SuggestedFix
.
Implementations§
source§impl SuggestedFixBuilder
impl SuggestedFixBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the suggested code fix and why it is being suggested.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the suggested code fix and why it is being suggested.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the suggested code fix and why it is being suggested.
sourcepub fn code(self, input: impl Into<String>) -> Self
pub fn code(self, input: impl Into<String>) -> Self
The suggested code fix. If applicable, includes code patch to replace your source code.
sourcepub fn set_code(self, input: Option<String>) -> Self
pub fn set_code(self, input: Option<String>) -> Self
The suggested code fix. If applicable, includes code patch to replace your source code.
sourcepub fn get_code(&self) -> &Option<String>
pub fn get_code(&self) -> &Option<String>
The suggested code fix. If applicable, includes code patch to replace your source code.
sourcepub fn build(self) -> SuggestedFix
pub fn build(self) -> SuggestedFix
Consumes the builder and constructs a SuggestedFix
.
Trait Implementations§
source§impl Clone for SuggestedFixBuilder
impl Clone for SuggestedFixBuilder
source§fn clone(&self) -> SuggestedFixBuilder
fn clone(&self) -> SuggestedFixBuilder
Returns a copy of the value. Read more
1.0.0 · 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 SuggestedFixBuilder
impl Debug for SuggestedFixBuilder
source§impl Default for SuggestedFixBuilder
impl Default for SuggestedFixBuilder
source§fn default() -> SuggestedFixBuilder
fn default() -> SuggestedFixBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SuggestedFixBuilder
impl PartialEq for SuggestedFixBuilder
source§fn eq(&self, other: &SuggestedFixBuilder) -> bool
fn eq(&self, other: &SuggestedFixBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SuggestedFixBuilder
Auto Trait Implementations§
impl Freeze for SuggestedFixBuilder
impl RefUnwindSafe for SuggestedFixBuilder
impl Send for SuggestedFixBuilder
impl Sync for SuggestedFixBuilder
impl Unpin for SuggestedFixBuilder
impl UnwindSafe for SuggestedFixBuilder
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> 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 moreCreates a shared type from an unshared type.