Refactor imports in raw read-write lock module for clarity

This commit is contained in:
Alix ANNERAUD 2025-02-28 23:30:01 +01:00
parent f2afcecfa8
commit 10fd6d1321

View File

@ -1,7 +1,8 @@
//! Read-Write Lock primitives.
//!
//! This module provides a trait for read-write locks that can be used in different contexts.
use core::{cell::RefCell, marker::PhantomData};
use core::cell::RefCell;
use core::marker::PhantomData;
/// Raw read-write lock trait.
///