nwin

Results 7 issues of nwin

This library should return image buffers instead of byte slices.

The lint “non_upper_case_globals” wrongly warns the consumer about a ill-named constant ([playpen](http://is.gd/GplrQb)). It only seems to happen if the constant is imported into the current namespace and if you’re using...

A-lint
C-bug

Currently `bytes::bytes::Bytes` is used in a public API (e.g. `Response::bytes`). This struct is inaccessible without adding `bytes` as a dependency to `Cargo.toml` and thus should be re-exported. I could file...

For example in `rust_tcl_sys::Tcl_CreateCommand` you define `_proc: *mut Tcl_CmdProc`. `Tcl_CmdProc` is already defined as a function pointer. Thus you define a function that takes a pointer to a function pointer...

A Tcl object is reference counted so it behaves like a `Rc`. Calling `clone` on a `Rc` does not copy the contents but just the smart pointer. The same should...

When the default value is a variable tidy only displays the variable name without any way to display its content. Here only `default-foldmarks` is shown: Here the default value is...

The API allows to filter with the query parameter `type`. This is not possible with this library. This library expects a `DnsContent` in `ListDnsRecordsParams` which unfortunately requires an value `content`....