Struct sgx_sync::SpinRwLock

source ·
pub struct SpinRwLock<T>where
    T: ?Sized,{ /* private fields */ }

Implementations§

source§

impl<T> SpinRwLock<T>

source

pub const fn new(data: T) -> SpinRwLock<T>

source

pub fn into_inner(self) -> T

source§

impl<T> SpinRwLock<T>where T: ?Sized,

source

pub fn read(&self) -> SpinRwLockReadGuard<'_, T>

source

pub fn write(&self) -> SpinRwLockWriteGuard<'_, T>

source

pub fn try_read(&self) -> Option<SpinRwLockReadGuard<'_, T>>

source

pub fn try_write(&self) -> Option<SpinRwLockWriteGuard<'_, T>>

source

pub fn get_mut(&mut self) -> &mut T

Trait Implementations§

source§

impl<T> Debug for SpinRwLock<T>where T: Debug + ?Sized,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T> Default for SpinRwLock<T>where T: Default + ?Sized,

source§

fn default() -> SpinRwLock<T>

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

impl<T> From<T> for SpinRwLock<T>

source§

fn from(value: T) -> SpinRwLock<T>

Converts to this type from the input type.
source§

impl RawRwLock for SpinRwLock<()>

source§

fn read(&self)

source§

fn try_read(&self) -> bool

source§

unsafe fn read_unlock(&self)

source§

fn write(&self)

source§

fn try_write(&self) -> bool

source§

unsafe fn write_unlock(&self)

source§

impl<T> ContiguousMemory for SpinRwLock<T>where T: ContiguousMemory,

source§

impl<T> Send for SpinRwLock<T>where T: Send + ?Sized,

source§

impl<T> Sync for SpinRwLock<T>where T: Send + Sync + ?Sized,

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for SpinRwLock<T>

§

impl<T: ?Sized> Unpin for SpinRwLock<T>where T: Unpin,

§

impl<T: ?Sized> UnwindSafe for SpinRwLock<T>where T: UnwindSafe,

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> EnclaveRange for Twhere T: ContiguousMemory,

source§

default fn is_enclave_range(&self) -> bool

source§

default fn is_host_range(&self) -> bool

source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
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.