Struct aws_sdk_appsync::operation::get_introspection_schema::builders::GetIntrospectionSchemaOutputBuilder
source · #[non_exhaustive]pub struct GetIntrospectionSchemaOutputBuilder { /* private fields */ }
Expand description
A builder for GetIntrospectionSchemaOutput
.
Implementations§
source§impl GetIntrospectionSchemaOutputBuilder
impl GetIntrospectionSchemaOutputBuilder
sourcepub fn schema(self, input: Blob) -> Self
pub fn schema(self, input: Blob) -> Self
The schema, in GraphQL Schema Definition Language (SDL) format.
For more information, see the GraphQL SDL documentation.
sourcepub fn set_schema(self, input: Option<Blob>) -> Self
pub fn set_schema(self, input: Option<Blob>) -> Self
The schema, in GraphQL Schema Definition Language (SDL) format.
For more information, see the GraphQL SDL documentation.
sourcepub fn get_schema(&self) -> &Option<Blob>
pub fn get_schema(&self) -> &Option<Blob>
The schema, in GraphQL Schema Definition Language (SDL) format.
For more information, see the GraphQL SDL documentation.
sourcepub fn build(self) -> GetIntrospectionSchemaOutput
pub fn build(self) -> GetIntrospectionSchemaOutput
Consumes the builder and constructs a GetIntrospectionSchemaOutput
.
Trait Implementations§
source§impl Clone for GetIntrospectionSchemaOutputBuilder
impl Clone for GetIntrospectionSchemaOutputBuilder
source§fn clone(&self) -> GetIntrospectionSchemaOutputBuilder
fn clone(&self) -> GetIntrospectionSchemaOutputBuilder
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 Default for GetIntrospectionSchemaOutputBuilder
impl Default for GetIntrospectionSchemaOutputBuilder
source§fn default() -> GetIntrospectionSchemaOutputBuilder
fn default() -> GetIntrospectionSchemaOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetIntrospectionSchemaOutputBuilder
impl PartialEq for GetIntrospectionSchemaOutputBuilder
source§fn eq(&self, other: &GetIntrospectionSchemaOutputBuilder) -> bool
fn eq(&self, other: &GetIntrospectionSchemaOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetIntrospectionSchemaOutputBuilder
Auto Trait Implementations§
impl Freeze for GetIntrospectionSchemaOutputBuilder
impl RefUnwindSafe for GetIntrospectionSchemaOutputBuilder
impl Send for GetIntrospectionSchemaOutputBuilder
impl Sync for GetIntrospectionSchemaOutputBuilder
impl Unpin for GetIntrospectionSchemaOutputBuilder
impl UnwindSafe for GetIntrospectionSchemaOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.