Struct aws_sdk_macie2::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 line_range(self, input: Range) -> Self
pub fn line_range(self, input: Range) -> Self
Reserved for future use.
sourcepub fn set_line_range(self, input: Option<Range>) -> Self
pub fn set_line_range(self, input: Option<Range>) -> Self
Reserved for future use.
sourcepub fn get_line_range(&self) -> &Option<Range>
pub fn get_line_range(&self) -> &Option<Range>
Reserved for future use.
sourcepub fn offset_range(self, input: Range) -> Self
pub fn offset_range(self, input: Range) -> Self
Reserved for future use.
sourcepub fn set_offset_range(self, input: Option<Range>) -> Self
pub fn set_offset_range(self, input: Option<Range>) -> Self
Reserved for future use.
sourcepub fn get_offset_range(&self) -> &Option<Range>
pub fn get_offset_range(&self) -> &Option<Range>
Reserved for future use.
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.
Trait Implementations§
source§impl Clone for PageBuilder
impl Clone for PageBuilder
source§fn clone(&self) -> PageBuilder
fn clone(&self) -> PageBuilder
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 PageBuilder
impl Debug for PageBuilder
source§impl Default for PageBuilder
impl Default for PageBuilder
source§fn default() -> PageBuilder
fn default() -> PageBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PageBuilder
impl PartialEq for PageBuilder
source§fn eq(&self, other: &PageBuilder) -> bool
fn eq(&self, other: &PageBuilder) -> bool
This method tests for
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
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.