pub struct ProjectFeatures {
pub soft_delete: bool,
pub has_validation: bool,
pub has_search: bool,
pub has_audit: bool,
pub has_multitenancy: bool,
pub has_auth: bool,
pub api_prefix: String,
}Expand description
Project-level feature flags loaded once from romance.toml.
Fields§
§soft_delete: bool§has_validation: bool§has_search: bool§has_audit: bool§has_multitenancy: bool§has_auth: bool§api_prefix: StringImplementations§
Auto Trait Implementations§
impl Freeze for ProjectFeatures
impl RefUnwindSafe for ProjectFeatures
impl Send for ProjectFeatures
impl Sync for ProjectFeatures
impl Unpin for ProjectFeatures
impl UnsafeUnpin for ProjectFeatures
impl UnwindSafe for ProjectFeatures
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more