pub struct ParsedType {
pub name: String,
pub kind: TypeKind,
pub fields: Vec<ParsedField>,
pub description: Option<String>,
pub interfaces: Vec<String>,
pub union_members: Vec<String>,
}
Fields§
§name: String
§kind: TypeKind
§fields: Vec<ParsedField>
§description: Option<String>
§interfaces: Vec<String>
§union_members: Vec<String>
Trait Implementations§
Source§impl Clone for ParsedType
impl Clone for ParsedType
Source§fn clone(&self) -> ParsedType
fn clone(&self) -> ParsedType
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 ParsedType
impl RefUnwindSafe for ParsedType
impl Send for ParsedType
impl Sync for ParsedType
impl Unpin for ParsedType
impl UnwindSafe for ParsedType
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