Struct style::shared_lock::Locked
source · pub struct Locked<T> {
shared_lock: SharedRwLock,
data: UnsafeCell<T>,
}
Expand description
Data protect by a shared lock.
Fields§
§data: UnsafeCell<T>
Implementations§
source§impl<T> Locked<T>
impl<T> Locked<T>
fn same_lock_as(&self, lock: &SharedRwLock) -> bool
sourcepub fn read_with<'a>(&'a self, guard: &'a SharedRwLockReadGuard<'_>) -> &'a T
pub fn read_with<'a>(&'a self, guard: &'a SharedRwLockReadGuard<'_>) -> &'a T
Access the data for reading.
sourcepub fn write_with<'a>(
&'a self,
guard: &'a mut SharedRwLockWriteGuard<'_>,
) -> &'a mut T
pub fn write_with<'a>( &'a self, guard: &'a mut SharedRwLockWriteGuard<'_>, ) -> &'a mut T
Access the data for writing.
Trait Implementations§
source§impl CssRulesHelpers for Locked<CssRules>
impl CssRulesHelpers for Locked<CssRules>
source§fn insert_rule(
&self,
lock: &SharedRwLock,
rule: &str,
parent_stylesheet_contents: &StylesheetContents,
index: usize,
containing_rule_types: CssRuleTypes,
parse_relative_rule_type: Option<CssRuleType>,
loader: Option<&dyn StylesheetLoader>,
allow_import_rules: AllowImportRules,
) -> Result<CssRule, RulesMutateError>
fn insert_rule( &self, lock: &SharedRwLock, rule: &str, parent_stylesheet_contents: &StylesheetContents, index: usize, containing_rule_types: CssRuleTypes, parse_relative_rule_type: Option<CssRuleType>, loader: Option<&dyn StylesheetLoader>, allow_import_rules: AllowImportRules, ) -> Result<CssRule, RulesMutateError>
impl<T: Send> Send for Locked<T>
impl<T: Send + Sync> Sync for Locked<T>
Auto Trait Implementations§
impl<T> !Freeze for Locked<T>
impl<T> !RefUnwindSafe for Locked<T>
impl<T> Unpin for Locked<T>where
T: Unpin,
impl<T> !UnwindSafe for Locked<T>
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> MaybeBoxed<Box<T>> for T
impl<T> MaybeBoxed<Box<T>> for T
source§fn maybe_boxed(self) -> Box<T>
fn maybe_boxed(self) -> Box<T>
Convert
source§impl<T> MaybeBoxed<T> for T
impl<T> MaybeBoxed<T> for T
source§fn maybe_boxed(self) -> T
fn maybe_boxed(self) -> T
Convert