pub struct ActixAdmin {
pub entity_names: HashMap<String, Vec<ActixAdminMenuElement>>,
pub view_models: HashMap<String, ActixAdminViewModel>,
pub card_grids: HashMap<String, Vec<Vec<String>>>,
pub configuration: ActixAdminConfiguration,
pub tera: Tera,
pub support_path: Option<String>,
}Fields§
§entity_names: HashMap<String, Vec<ActixAdminMenuElement>>§view_models: HashMap<String, ActixAdminViewModel>§card_grids: HashMap<String, Vec<Vec<String>>>§configuration: ActixAdminConfiguration§tera: Tera§support_path: Option<String>Trait Implementations§
Source§impl Clone for ActixAdmin
impl Clone for ActixAdmin
Source§fn clone(&self) -> ActixAdmin
fn clone(&self) -> ActixAdmin
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ActixAdmin
impl !RefUnwindSafe for ActixAdmin
impl Send for ActixAdmin
impl Sync for ActixAdmin
impl Unpin for ActixAdmin
impl !UnwindSafe for ActixAdmin
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