Struct aws_sdk_codegurusecurity::types::builders::CodeLineBuilder
source · #[non_exhaustive]pub struct CodeLineBuilder { /* private fields */ }
Expand description
A builder for CodeLine
.
Implementations§
source§impl CodeLineBuilder
impl CodeLineBuilder
sourcepub fn set_number(self, input: Option<i32>) -> Self
pub fn set_number(self, input: Option<i32>) -> Self
The code line number.
sourcepub fn get_number(&self) -> &Option<i32>
pub fn get_number(&self) -> &Option<i32>
The code line number.
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
The code that contains a vulnerability.
sourcepub fn get_content(&self) -> &Option<String>
pub fn get_content(&self) -> &Option<String>
The code that contains a vulnerability.
Trait Implementations§
source§impl Clone for CodeLineBuilder
impl Clone for CodeLineBuilder
source§fn clone(&self) -> CodeLineBuilder
fn clone(&self) -> CodeLineBuilder
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 CodeLineBuilder
impl Debug for CodeLineBuilder
source§impl Default for CodeLineBuilder
impl Default for CodeLineBuilder
source§fn default() -> CodeLineBuilder
fn default() -> CodeLineBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CodeLineBuilder
impl PartialEq for CodeLineBuilder
source§fn eq(&self, other: &CodeLineBuilder) -> bool
fn eq(&self, other: &CodeLineBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CodeLineBuilder
Auto Trait Implementations§
impl Freeze for CodeLineBuilder
impl RefUnwindSafe for CodeLineBuilder
impl Send for CodeLineBuilder
impl Sync for CodeLineBuilder
impl Unpin for CodeLineBuilder
impl UnwindSafe for CodeLineBuilder
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.