Struct aws_sdk_directconnect::types::builders::LoaBuilder
source · #[non_exhaustive]pub struct LoaBuilder { /* private fields */ }Expand description
A builder for Loa.
Implementations§
source§impl LoaBuilder
impl LoaBuilder
sourcepub fn loa_content(self, input: Blob) -> Self
pub fn loa_content(self, input: Blob) -> Self
The binary contents of the LOA-CFA document.
sourcepub fn set_loa_content(self, input: Option<Blob>) -> Self
pub fn set_loa_content(self, input: Option<Blob>) -> Self
The binary contents of the LOA-CFA document.
sourcepub fn get_loa_content(&self) -> &Option<Blob>
pub fn get_loa_content(&self) -> &Option<Blob>
The binary contents of the LOA-CFA document.
sourcepub fn loa_content_type(self, input: LoaContentType) -> Self
pub fn loa_content_type(self, input: LoaContentType) -> Self
The standard media type for the LOA-CFA document. The only supported value is application/pdf.
sourcepub fn set_loa_content_type(self, input: Option<LoaContentType>) -> Self
pub fn set_loa_content_type(self, input: Option<LoaContentType>) -> Self
The standard media type for the LOA-CFA document. The only supported value is application/pdf.
sourcepub fn get_loa_content_type(&self) -> &Option<LoaContentType>
pub fn get_loa_content_type(&self) -> &Option<LoaContentType>
The standard media type for the LOA-CFA document. The only supported value is application/pdf.
Trait Implementations§
source§impl Clone for LoaBuilder
impl Clone for LoaBuilder
source§fn clone(&self) -> LoaBuilder
fn clone(&self) -> LoaBuilder
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 LoaBuilder
impl Debug for LoaBuilder
source§impl Default for LoaBuilder
impl Default for LoaBuilder
source§fn default() -> LoaBuilder
fn default() -> LoaBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for LoaBuilder
impl PartialEq for LoaBuilder
source§fn eq(&self, other: &LoaBuilder) -> bool
fn eq(&self, other: &LoaBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LoaBuilder
Auto Trait Implementations§
impl Freeze for LoaBuilder
impl RefUnwindSafe for LoaBuilder
impl Send for LoaBuilder
impl Sync for LoaBuilder
impl Unpin for LoaBuilder
impl UnwindSafe for LoaBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.