pub struct ParsedSchema {
pub types: HashMap<String, ParsedType>,
pub enums: HashMap<String, ParsedEnum>,
pub scalars: Vec<String>,
}
Fields§
§types: HashMap<String, ParsedType>
§enums: HashMap<String, ParsedEnum>
§scalars: Vec<String>
Trait Implementations§
Source§impl Clone for ParsedSchema
impl Clone for ParsedSchema
Source§fn clone(&self) -> ParsedSchema
fn clone(&self) -> ParsedSchema
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ParsedSchema
impl RefUnwindSafe for ParsedSchema
impl Send for ParsedSchema
impl Sync for ParsedSchema
impl Unpin for ParsedSchema
impl UnwindSafe for ParsedSchema
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