Struct config_it::entity::MetadataProps
source · pub struct MetadataProps {
pub disable_export: bool,
pub disable_import: bool,
pub read_access: AccessLevel,
pub write_access: AccessLevel,
pub schema: Option<Schema>,
pub varname: &'static str,
pub description: &'static str,
}Fields§
§disable_export: bool§disable_import: bool§read_access: AccessLevelRead/Write access level for this variable.
write_access: AccessLevel§schema: Option<Schema>§varname: &'static strSource variable name. Usually same as ‘name’ unless another name is specified for it.
description: &'static strTrait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for MetadataProps
impl Send for MetadataProps
impl Sync for MetadataProps
impl Unpin for MetadataProps
impl UnwindSafe for MetadataProps
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