You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed one of Vulkano's design troubles was that
Vulkano users are encouraged to manipulate objects through Arcs. However there is no way to add a method pub fn foo(self: Arc) to an object
A recent pull request added this feature. It is currently nightly-only, but it does work. It would be cool to switch Vulkano to use this once it becomes stable. See this Rust playground for an example with Arcs.
I've opened this issue to create a tracking list of what needs to be changed for self: Arc<Self>.
The text was updated successfully, but these errors were encountered:
I noticed one of Vulkano's design troubles was that
A recent pull request added this feature. It is currently nightly-only, but it does work. It would be cool to switch Vulkano to use this once it becomes stable. See this Rust playground for an example with
Arc
s.I've opened this issue to create a tracking list of what needs to be changed for
self: Arc<Self>
.The text was updated successfully, but these errors were encountered: