//! A field that is exclusively owned by a [`ListArc`]. //! //! This can be used to have reference counted struct where one of the reference counted pointers //! has exclusive access to a field of the struct. //! //! [`ListArc`]: crate::list::ListArc
use core::cell::UnsafeCell;
/// A field owned by a specific [`ListArc`]. /// /// [`ListArc`]: crate::list::ListArc pubstruct ListArcField<T, const ID: u64 = 0> {
value: UnsafeCell<T>,
}
// SAFETY: If the inner type is thread-safe, then it's also okay for `ListArc` to be thread-safe. unsafeimpl<T: Send + Sync, const ID: u64> Send for ListArcField<T, ID> {} // SAFETY: If the inner type is thread-safe, then it's also okay for `ListArc` to be thread-safe. unsafeimpl<T: Send + Sync, const ID: u64> Sync for ListArcField<T, ID> {}
/// Access the value when we have exclusive access to the `ListArcField`. /// /// This allows access to the field using an `UniqueArc` instead of a `ListArc`. pubfn get_mut(&mutself) -> &mut T { self.value.get_mut()
}
/// Unsafely assert that you have shared access to the `ListArc` for this field. /// /// # Safety /// /// The caller must have shared access to the `ListArc<ID>` containing the struct with this /// field for the duration of the returned reference. pubunsafefn assert_ref(&self) -> &T { // SAFETY: The caller has shared access to the `ListArc`, so they also have shared access // to this field. unsafe { &*self.value.get() }
}
/// Unsafely assert that you have mutable access to the `ListArc` for this field. /// /// # Safety /// /// The caller must have mutable access to the `ListArc<ID>` containing the struct with this /// field for the duration of the returned reference. #[expect(clippy::mut_from_ref)] pubunsafefn assert_mut(&self) -> &mut T { // SAFETY: The caller has exclusive access to the `ListArc`, so they also have exclusive // access to this field. unsafe { &mut *self.value.get() }
}
}
/// Defines getters for a [`ListArcField`]. #[macro_export]
macro_rules! define_list_arc_field_getter {
($pub:vis fn $name:ident(&self $(<$id:tt>)?) -> &$typ:ty { $field:ident }
$($rest:tt)*
) => {
$pubfn $name<'a>(self: &'a $crate::list::ListArc<Self $(, $id)?>) -> &'a $typ { let field = &(&**self).$field; // SAFETY: We have a shared reference to the `ListArc`. unsafe { $crate::list::ListArcField::<$typ $(, $id)?>::assert_ref(field) }
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.