pub struct Resolver {
pub godot_items: HashMap<String, String>,
pub rust_to_godot: HashMap<String, String>,
pub url_overrides: HashMap<String, String>,
pub rename_classes: HashMap<String, String>,
}
Expand description
Information to resolve links.
Fields§
§godot_items: HashMap<String, String>
Link to godot items’ documentation.
Contains the link to godot classes, but also true
, INF
, Err
…
rust_to_godot: HashMap<String, String>
Mapping from Rust to Godot types.
url_overrides: HashMap<String, String>
User-defined overrides.
These are defined in the toml configuration file.
rename_classes: HashMap<String, String>
User-defined Rust to Godot mapping.
These are defined in the toml configuration file.
Implementations§
Trait Implementations§
impl Eq for Resolver
impl StructuralPartialEq for Resolver
Auto Trait Implementations§
impl Freeze for Resolver
impl RefUnwindSafe for Resolver
impl Send for Resolver
impl Sync for Resolver
impl Unpin for Resolver
impl UnwindSafe for Resolver
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