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