pub struct TypeParserResult {
pub types: HashMap<String, Ref<Type>>,
pub variables: HashMap<String, Ref<Type>>,
pub functions: HashMap<String, Ref<Type>>,
}
Fields§
§types: HashMap<String, Ref<Type>>
§variables: HashMap<String, Ref<Type>>
§functions: HashMap<String, Ref<Type>>
Trait Implementations§
source§impl Clone for TypeParserResult
impl Clone for TypeParserResult
source§fn clone(&self) -> TypeParserResult
fn clone(&self) -> TypeParserResult
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 TypeParserResult
impl Default for TypeParserResult
source§fn default() -> TypeParserResult
fn default() -> TypeParserResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TypeParserResult
impl RefUnwindSafe for TypeParserResult
impl Send for TypeParserResult
impl Sync for TypeParserResult
impl Unpin for TypeParserResult
impl UnwindSafe for TypeParserResult
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