1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//===================================================================================================================================================================================//
//
// /$$$$$$ /$$ /$$ /$$
// |_ $$_/ | $$ | $$ | $$
// | $$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ | $$$$$$$ | $$ /$$$$$$
// | $$ | $$__ $$ /$$_____/|_ $$_/ |____ $$| $$__ $$ /$$_____/ /$$__ $$ |____ $$| $$__ $$| $$ /$$__ $$
// | $$ | $$ \ $$| $$$$$$ | $$ /$$$$$$$| $$ \ $$| $$ | $$$$$$$$ /$$$$$$$| $$ \ $$| $$| $$$$$$$$
// | $$ | $$ | $$ \____ $$ | $$ /$$ /$$__ $$| $$ | $$| $$ | $$_____/ /$$__ $$| $$ | $$| $$| $$_____/
// /$$$$$$| $$ | $$ /$$$$$$$/ | $$$$/| $$$$$$$| $$ | $$| $$$$$$$| $$$$$$$| $$$$$$$| $$$$$$$/| $$| $$$$$$$
// |______/|__/ |__/|_______/ \___/ \_______/|__/ |__/ \_______/ \_______/ \_______/|_______/ |__/ \_______/
//
//===================================================================================================================================================================================//
//?
//? Created by LunaticWyrm467 and others.
//?
//? All code is licensed under the MIT license.
//? Feel free to reproduce, modify, and do whatever.
//?
//!
//! Provides the `Instanceable` trait which marks objects that can be represented in the `NodeTree`
//! as nodes.
//!
use Node;
/// This marks any object that can be referenced in the `NodeTree` as either a node or a collection
/// of nodes.