#[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 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 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>
Creates a shared type from an unshared type.