We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's say we have the following.
#[charybdis_model( table_name = chefs, partition_keys = [id], clustering_keys = [], global_secondary_indexes = [email, phone], local_secondary_indexes = [], static_columns = [] )] #[derive(Default, Serialize, Deserialize)] pub struct Chef { /// Chef's unique; identifier. Immutable pub id: Uuid, pub email: Text, pub phone: Text, }
The semi-colon in the doc comment for id will cause the charybdis_model to crash.
id
charybdis_model
custom attribute panicked message: called `Result::unwrap()` on an `Err` value: Error("cannot parse string into token stream")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say we have the following.
The semi-colon in the doc comment for
id
will cause thecharybdis_model
to crash.The text was updated successfully, but these errors were encountered: