pub struct GetIntrospectionSchemaResponse {
pub schema: Option<Bytes>,
}
Fields§
§schema: Option<Bytes>
The schema, in GraphQL Schema Definition Language (SDL) format.
For more information, see the GraphQL SDL documentation.
Trait Implementations§
Source§impl Clone for GetIntrospectionSchemaResponse
impl Clone for GetIntrospectionSchemaResponse
Source§fn clone(&self) -> GetIntrospectionSchemaResponse
fn clone(&self) -> GetIntrospectionSchemaResponse
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 GetIntrospectionSchemaResponse
impl Default for GetIntrospectionSchemaResponse
Source§fn default() -> GetIntrospectionSchemaResponse
fn default() -> GetIntrospectionSchemaResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetIntrospectionSchemaResponse
impl PartialEq for GetIntrospectionSchemaResponse
Source§fn eq(&self, other: &GetIntrospectionSchemaResponse) -> bool
fn eq(&self, other: &GetIntrospectionSchemaResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetIntrospectionSchemaResponse
Auto Trait Implementations§
impl !Freeze for GetIntrospectionSchemaResponse
impl RefUnwindSafe for GetIntrospectionSchemaResponse
impl Send for GetIntrospectionSchemaResponse
impl Sync for GetIntrospectionSchemaResponse
impl Unpin for GetIntrospectionSchemaResponse
impl UnwindSafe for GetIntrospectionSchemaResponse
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