Clouds
                                            Clouds
                                        
                                    Is it possible to find vetur.config.js in folder `.vscode` as well?
> > Is it possible to find vetur.config.js in folder `.vscode` as well? > > Why do you need it? Since it is config only related to the IDE, and...
I'd like to have multiple thread, each one has an interpreter. No PyObject would be send between thread. IIRC, we couldn't hold a PyObject in rust, everything is ref to...
Share some investigation here (note: the line number might offset by 2-3 lines since I added some debug print). `last_error_number 2036` for test in `tests::queryable_by_name::struct_with_no_table` (at ./tests/queryable_by_name.rs:70:16) ```rust // failed...
Maybe we should updating bindings for mysqlclient-sys, https://github.com/sgrif/mysqlclient-sys/pull/24, or not use a fix binding, instead we could generate one on build.
```rust let val = -705.0759657500337; // or std::mem::transmute(13872785166456217622u64) test_years(val); // this would fail let value = val.years(); // PgInterval { microseconds: 0, days: 0, months: -8460 } let sql_str =...
I see now `DataObj` and `DataArray` is not cloneable, is it by design? When refactoring `from_raw` for `data.rs`, I keep current behavior (no clone), it's easy to make it `cloneable`...
Thanks for fast reply! Error type that not cloneable usually has a cloneable ErrorKind like std::io::ErrorKind. The error here could derive clone, so why not?
I'm using thiserror wrap errors, if r2d2::Error supports clone, I could use `#[from]`. The error would be cloned and send to log thread so it must derive Clone ```rust #[derive(Debug,...
What's the status now? Is `git_reference_iterator` safe now? I'm iterating branches using `git_branch_iterator_new` while editing the repo simultaneously, is it going to crash or data race?