appscraps_shared 0.1.0

Shared funcs for appscraps.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error_chain! {
    types { }

    links { }

    foreign_links { }

    errors {
        ConstructEventNotPassedEnvironment {
            description("The object passed to the construct event cannot be cast into an 'Environment'.")
            display(
                "{}",
                "The object passed to the construct event cannot be cast into an 'Environment'."
            )
        }
    }
}