Zachary Kohnen

Results 16 issues of Zachary Kohnen

Currently, the Quantity struct has implemented a few methods like `new` and `format_args` defined on (what looks like) the given dimensions for that system of measurements Sample methods defined on...

I have added JSDoc Documentation for autocompletion and intellisense

## Specific Demand When using `dioxus` with the web feature, the crate pulls in `dioxus_web` with its default features enabled, one of which is `panic_hook`. Given the way cargo is...

breaking
tweak

### What is the feature ? The addition of axis labels (descriptions) on Cartesian 3d plots ### Why this feature is useful and how people would use the feature ?...

enhancement
help wanted
feature request

When using the dbg! macro in a function call, the macro expansion seems to flag a clippy lint. [clippy::double_parens](https://rust-lang.github.io/rust-clippy/master/#double_parens) to be specific. ![image](https://user-images.githubusercontent.com/14093962/143765135-18ef1393-81f0-4f06-ae01-c40e55ab3416.png)

type: bug

Currently, to use dlopen, the user needs 2 dependencies, one for the derive macro and one for the library itself ```toml dlopen = "0.1" dlopen_derive = "0.1" ``` as well...

**Describe the bug** When attempting to play a song, a the song does not play and nothing seems to happen. Running the gui from the console, one can see a...

bug
windows

When creating graphql objects using the `GraphQLObject` custom derive which have types that do not implement [`GraphQLType`](https://docs.rs/juniper/0.14.2/juniper/trait.GraphQLType.html) you end up being forced to use the `#[juniper::object]` proc macro and redefine...

enhancement

When writing crates, I tend to add the `#![warn(missing_docs)}` directive to enforce the use of documentation on publicly accessible apis. With the way the proc macro transforms the implementation block,...

enhancement

The api of usb-device uses the `UsbError::WouldBlock` variant to signal that the current operation is waiting on the device. This is great for allowing non-blocking implementations of usb, but can...