Closed samuelselleck closed 5 months ago
This adds the ability to store node tree local information, to be used for contextual children.
Use:
// get value: ctx.peek_local_store::<SomeUserlandType>(|store| { /// userland logic here }); // set value: ctx.push_local_store(SomeUserlandTyle {});
any object inserted (or looked up) is required to implement the Store Marker trait.
This adds the ability to store node tree local information, to be used for contextual children.
Use:
any object inserted (or looked up) is required to implement the Store Marker trait.