libuv-rs icon indicating copy to clipboard operation
libuv-rs copied to clipboard

A safe rust wrapper for libuv

Results 5 libuv-rs issues
Sort by recently updated
recently updated
newest added

I noticed some functions return `Box`, when they can just return the error code. Is this intentional? https://github.com/bmatcuk/libuv-rs/blob/df3f9e14397e5a937ed07af794212554a3cd81ac/src/handles/fs_event.rs#L136-L161

error: process didn't exit successfully: `target\debug\examples\server.exe` (exit code: 0xc0000005, STATUS_ACCESS_VIOLATION) Segmentation fault

bug

Hi, is it possible to add a method on `Loop` that does the equivalent of the private `FromInner` trait? I need to create a `Loop` from a `uv_loop_t`. Would it...

enhancement

cargo build --target aarch64-linux-android --release error[E0308]: mismatched types --> /Users/javanew/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libuv-2.9.0/src/requests/fs.rs:112:46 | 112 | ...fe { CStr::from_ptr(ptr).to_string_lossy().into_owned() }) | -------------- ^^^ expected `*const u8`, found `*const i8` | | | arguments...

Hi all, this PR adds a method to construct a `Loop` from an existing pointer address. My use case is reusing the Libuv bindings you have with an existing libuv...