VladTheJunior

Results 17 comments of VladTheJunior

Yes, but DateTime has these methods: ```rust pub const fn naive_utc(&self) -> NaiveDateTime pub fn naive_local(&self) -> NaiveDateTime ``` https://docs.rs/chrono/latest/chrono/struct.DateTime.html#method.naive_utc https://docs.rs/chrono/latest/chrono/struct.DateTime.html#method.naive_local Btw deprecated method is also used here ```rust impl...

Is it enough? [perf.zip](https://github.com/warp-tech/russh/files/14974601/perf.zip) ``` 7.79% tokio-runtime-w test_agent [.] memcpy 7.77% tokio-runtime-w test_agent [.] ::poll_write 6.62% tokio-runtime-w test_agent [.] tokio::runtime::scheduler::multi_thread::worker::Context::run 5.77% tokio-runtime-w test_agent [.] tokio::runtime::scheduler::multi_thread::worker::

There is also additional context of this problem. Probably root reason is target device. I trying to execute command which sends ~200KB of data. But for unknown reason it recieves...

Hi, is there any progress on inserting bytes feature ? I want to insert parquet data to table and can't find way to do it.

I tried to add custom encoder but it fails now, because in frb_generated.rs there are 2 encoders for Ipv4Address: ```rust impl SseEncode for Ipv4Addr { // Codec=Sse (Serialization based), see...

I tried to create sample for you, but it has another error, idk how to fix it ``` SEVERE: error[E0599]: no method named `into_into_dart` found for struct `Ipv4Addr` in the...

> Hmm, firstly maybe try to let the encode and decode have the same time (currently it is Vec and String in the two scenarios) I used it in test...

Okay, I will add some summary. After create new frb project, I added these lines to `simple.rs` file: ```rust use std::net::Ipv4Addr; use flutter_rust_bridge::frb; #[flutter_rust_bridge::frb(sync)] // Synchronous mode for simplicity of...