Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

are the single-variant enums required? #186

Open
danieleades opened this issue Oct 31, 2022 · 0 comments
Open

are the single-variant enums required? #186

danieleades opened this issue Oct 31, 2022 · 0 comments

Comments

@danieleades
Copy link
Contributor

there are a number of single-variant enums.

eg.

#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
#[serde(untagged)]
pub enum Prices {
    AllPrices(Vec<SymbolPrice>),
}

they seem to be some kind of newtype pattern wrapping a Vec of some other object.

@wisespace-io can you explain what these are for? Is there a reason you can't use the bare Vecs?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant