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
error message: multiple applicable items in scope,multiple name found.
name
seems like you define same function called name
use sea_orm::entity::prelude::{*}; use serde::{Deserialize, Serialize}; use utoipa::ToSchema; #[derive( Debug, Clone, PartialEq, Eq, EnumIter, DeriveActiveEnum, Serialize, Deserialize, ToSchema, )] #[sea_orm(rs_type = "String", db_type = "Enum", enum_name = "status_enum")] pub enum StatusEnum { #[sea_orm(string_value = "draft")] Draft, #[sea_orm(string_value = "pend")] Pend, #[sea_orm(string_value = "post")] Post, }
The text was updated successfully, but these errors were encountered:
Probably needs some investigation to evaluate whether there is something that can be done to resolve this issue.
Sorry, something went wrong.
No branches or pull requests
error message: multiple applicable items in scope,multiple
name
found.seems like you define same function called name
The text was updated successfully, but these errors were encountered: