Struct aws_sdk_securityhub::types::builders::PageBuilder
source · #[non_exhaustive]pub struct PageBuilder { /* private fields */ }
Expand description
A builder for Page
.
Implementations§
source§impl PageBuilder
impl PageBuilder
sourcepub fn page_number(self, input: i64) -> Self
pub fn page_number(self, input: i64) -> Self
The page number of the page that contains the sensitive data.
sourcepub fn set_page_number(self, input: Option<i64>) -> Self
pub fn set_page_number(self, input: Option<i64>) -> Self
The page number of the page that contains the sensitive data.
sourcepub fn get_page_number(&self) -> &Option<i64>
pub fn get_page_number(&self) -> &Option<i64>
The page number of the page that contains the sensitive data.
sourcepub fn line_range(self, input: Range) -> Self
pub fn line_range(self, input: Range) -> Self
An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.
sourcepub fn set_line_range(self, input: Option<Range>) -> Self
pub fn set_line_range(self, input: Option<Range>) -> Self
An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.
sourcepub fn get_line_range(&self) -> &Option<Range>
pub fn get_line_range(&self) -> &Option<Range>
An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.
sourcepub fn offset_range(self, input: Range) -> Self
pub fn offset_range(self, input: Range) -> Self
An occurrence of sensitive data detected in a binary text file.
sourcepub fn set_offset_range(self, input: Option<Range>) -> Self
pub fn set_offset_range(self, input: Option<Range>) -> Self
An occurrence of sensitive data detected in a binary text file.
sourcepub fn get_offset_range(&self) -> &Option<Range>
pub fn get_offset_range(&self) -> &Option<Range>
An occurrence of sensitive data detected in a binary text file.
Trait Implementations§
source§impl Clone for PageBuilder
impl Clone for PageBuilder
source§fn clone(&self) -> PageBuilder
fn clone(&self) -> PageBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PageBuilder
impl Debug for PageBuilder
source§impl Default for PageBuilder
impl Default for PageBuilder
source§fn default() -> PageBuilder
fn default() -> PageBuilder
source§impl PartialEq for PageBuilder
impl PartialEq for PageBuilder
source§fn eq(&self, other: &PageBuilder) -> bool
fn eq(&self, other: &PageBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PageBuilder
Auto Trait Implementations§
impl Freeze for PageBuilder
impl RefUnwindSafe for PageBuilder
impl Send for PageBuilder
impl Sync for PageBuilder
impl Unpin for PageBuilder
impl UnwindSafe for PageBuilder
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
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>
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>
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