pub struct GetIntrospectionSchemaRequest {
pub api_id: String,
pub format: String,
pub include_directives: Option<bool>,
}
Fields§
§api_id: String
The API ID.
format: String
The schema format: SDL or JSON.
include_directives: Option<bool>
A flag that specifies whether the schema introspection should contain directives.
Trait Implementations§
Source§impl Clone for GetIntrospectionSchemaRequest
impl Clone for GetIntrospectionSchemaRequest
Source§fn clone(&self) -> GetIntrospectionSchemaRequest
fn clone(&self) -> GetIntrospectionSchemaRequest
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 GetIntrospectionSchemaRequest
impl Default for GetIntrospectionSchemaRequest
Source§fn default() -> GetIntrospectionSchemaRequest
fn default() -> GetIntrospectionSchemaRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetIntrospectionSchemaRequest
impl PartialEq for GetIntrospectionSchemaRequest
Source§fn eq(&self, other: &GetIntrospectionSchemaRequest) -> bool
fn eq(&self, other: &GetIntrospectionSchemaRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetIntrospectionSchemaRequest
Auto Trait Implementations§
impl Freeze for GetIntrospectionSchemaRequest
impl RefUnwindSafe for GetIntrospectionSchemaRequest
impl Send for GetIntrospectionSchemaRequest
impl Sync for GetIntrospectionSchemaRequest
impl Unpin for GetIntrospectionSchemaRequest
impl UnwindSafe for GetIntrospectionSchemaRequest
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