WarrenN1
WarrenN1
**Describe the bug** 3D Scatterplot drag to rotate not working (MacOS 11.5). When I create the 3D Scatterplot and I click with 1 finger on the trackpad and drag the...
I have 2 features in my server: 1) an IO Loop 2) a Thread Pool I would like to launch a process on the IO Loop, and then have it...
I have state for a Sidebar defined in `sidebar.rs` as such: ``` #[derive(Debug, Clone, PartialEq, Eq, Store)] pub struct SidebarState { pub open : bool, pub active_menu : String, }...
I have a HashMap That is storing data as such: {'uuid': 'f4a9a11b-6e71-443d-9289-71a26fe6a018'} When I use: ``` let data = self.session_data.get("uuid"); if data.is_none() { return 0; } let test_uuid: Uuid =...
I had a question about the following asynchronous mutex I am working on: ``` #include #include #include class async_mutex { public: // Lock the mutex asynchronously boost::asio::awaitable async_lock() { //...
I need to have a struct like: ``` #[derive(Debug, FromRow, ValueList, Serialize)] struct Task { action : i64, dt : chrono::Duration } ``` The problem is that this does not...
I have 2 ValueLists that I need to merge because I have a query with a very large number of parameters. I **do not want** to have to pass all...