jquesada2016

Results 67 issues of jquesada2016

#### Describe your feature request This is a complimentary feature request for #3217. The idea for this feature is to add an option in the `[editor]` config to always keep...

C-enhancement

Perhaps there is already a way to do this, but I was unable to figure it out, but is there any way to bundle JavaScript packages? If not, are the...

enhancement
discussion

I ran across three related issues when reproducing this issue. Take the following: ```rust #[typestate] mod my_state { #[automaton] struct Aut; #[state] struct State1(HelperEnum); trait State1 { fn new() ->...

Using generics in any of the states causes the automaton's type to be stripped away. Take the following example: ```rust use typestate::typestate; #[typestate] mod my_state { #[automaton] pub struct Automaton;...

Given the following: ```rust use typestate::typestate; #[typestate] mod my_state { #[automaton] pub struct Automaton; #[state] pub struct State1(bool); pub trait State1: Sized { fn new() -> State1 { Automaton {...

Attempting to do the following results in an error: ```rust #[typestate] mod my_state { #[automaton] pub struct MyState; #[state] pub struct State1 { data: T, } trait State1 { fn...

Hello, I just was swinging in to give `rxrust` a try, however, it seems to be broken. The resulting error message is as follows: ``` Checking rxrust v0.15.0 error[E0277]: `*mut...

I am surprised this is something not currently implemented for `Stream`, unless I am missing something. It would be a great addition.

I have thoroughly been enjoying this project! I wanted to know if it would perhaps be possible to add `wasm` bindings to the API's? In my use case, it would...

feature-request

I believe it would be a great idea to add a contributor guide, or guidelines, or procedure, for individuals to contribute to this project. I personally believe Sycamore to have...

A-docs
C-enhancement