#[non_exhaustive]
pub struct LoadedSectionInner { pub sections_i_depend_on: Vec<StrongDependency>, pub sections_dependent_on_me: Vec<WeakDependent>, }
Expand description

The parts of a LoadedSection that may be mutable, i.e., only the parts that could change after a section is initially loaded and linked.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§sections_i_depend_on: Vec<StrongDependency>

The list of sections in foreign crates that this section depends on, i.e., “my required dependencies”. This is kept as a list of strong references because these sections must outlast this section, i.e., those sections cannot be removed/deleted until this one is deleted.

§sections_dependent_on_me: Vec<WeakDependent>

The list of sections in foreign crates that depend on this section, i.e., “my dependents”. This is kept as a list of Weak references because we must be able to remove other sections that are dependent upon this one before we remove this one. If we kept strong references to the sections dependent on this one, then we wouldn’t be able to remove/delete those sections before deleting this one.

Trait Implementations§

source§

impl Default for LoadedSectionInner

source§

fn default() -> LoadedSectionInner

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.