rtti 0.4.0

[very early WIP] Run-time type information trait. Use crate rtti-derive to implement.
Documentation
{
    "version": "2.0.0",
    "presentation": {
        "reveal": "always",
        "panel": "new"
    },
    "tasks": [
        {
            "label": "cargo build",
            "type": "shell",
            "command": "cargo",
            "args": [
                "build"
            ],
            "group": "build",
            "problemMatcher": "$rustc"
        },
        {
            "label": "cargo build (release)",
            "type": "shell",
            "command": "cargo",
            "args": [
                "build",
                "--release"
            ],
            "group": "build",
            "problemMatcher": "$rustc"
        },
        {
            "label": "cargo test",
            "type": "shell",
            "command": "cargo",
            "args": [
                "test"
            ],
            "group": "test",
            "problemMatcher": "$rustc"
        },
        {
            "label": "cargo clean",
            "type": "shell",
            "command": "cargo",
            "args": [
                "clean"
            ],
            "problemMatcher": []
        },
        {
            "label": "cargo update",
            "type": "shell",
            "command": "cargo",
            "args": [
                "update"
            ],
            "problemMatcher": []
        },
        {
            "label": "cargo rustdoc",
            "type": "shell",
            "command": "cargo",
            "args": [
                "rustdoc",
                "--open"
            ],
            "problemMatcher": []
        },
    ]
}