You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structBazVec{#[doc = r" a vector of `"]#[doc = stringify!(foo)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubfoo:Vec<u16>,#[doc = r" a vector of `"]#[doc = stringify!(bar)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubbar:Vec<u8>,#[doc = r" a vector of `"]#[doc = stringify!(test)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubtest:HashMap<u16,Vec<u8>>,}
instead of the current
structBazVec{#[doc = r" a vector of `"]#[doc = stringify!(foo)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubfoo:Vec<u16>,#[doc = r" a vector of `"]#[doc = stringify!(bar)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubbar:Vec<u8>,#[doc = r" a vector of `"]#[doc = stringify!(test)]#[doc = r"` from a"]#[doc = "[`Baz`](struct.Baz.html)"]pubtest:Vec<HashMap<u16,u8>>,}
The text was updated successfully, but these errors were encountered:
It would be nice to get support for HashMap, for eg.
would create
instead of the current
The text was updated successfully, but these errors were encountered: