pub struct Profile {
pub id: ProfileId,
pub docs_root: DocsRoot,
pub managed: &'static [Projection],
pub adopted: &'static [Projection],
}Expand description
What one profile installs.
Fields§
§id: ProfileIdThe profile this declaration belongs to.
docs_root: DocsRootThe documentation root the instance uses.
managed: &'static [Projection]Byte projections the canon keeps owning.
adopted: &'static [Projection]Seeds the instance owns from the moment they land.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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