Struct RocketMQTokioRwLock

Source
pub struct RocketMQTokioRwLock<T: ?Sized> { /* private fields */ }

Implementations§

Source§

impl<T: ?Sized> RocketMQTokioRwLock<T>

Source

pub fn new(data: T) -> Self
where T: Sized,

Creates a new RocketMQTokioRwLock instance containing the given data.

§Arguments
  • data - The data to be protected by the read-write lock.
§Returns

A new RocketMQTokioRwLock instance.

Source

pub fn new_rw_lock(lock: RwLock<T>) -> Self
where T: Sized,

Creates a new RocketMQTokioRwLock instance from an existing tokio::sync::RwLock.

§Arguments
  • lock - An existing tokio::sync::RwLock to be used.
§Returns

A new RocketMQTokioRwLock instance.

Source

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

Acquires a read lock asynchronously, blocking the current task until it is able to do so.

§Returns

A RwLockReadGuard that releases the read lock when dropped.

Source

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

Acquires a write lock asynchronously, blocking the current task until it is able to do so.

§Returns

A RwLockWriteGuard that releases the write lock when dropped.

Source

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

Attempts to acquire a read lock asynchronously without blocking.

§Returns

An Option containing a RwLockReadGuard if the read lock was successfully acquired, or None if the lock is already held.

Source

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

Attempts to acquire a write lock asynchronously without blocking.

§Returns

An Option containing a RwLockWriteGuard if the write lock was successfully acquired, or None if the lock is already held.

Source

pub async fn try_read_timeout( &self, timeout: Duration, ) -> Option<RwLockReadGuard<'_, T>>

Attempts to acquire a read lock asynchronously, blocking for up to the specified timeout.

§Arguments
  • timeout - The maximum duration to wait for the read lock.
§Returns

An Option containing a RwLockReadGuard if the read lock was successfully acquired within the timeout, or None if the timeout expired.

Source

pub async fn try_write_timeout( &self, timeout: Duration, ) -> Option<RwLockWriteGuard<'_, T>>

Attempts to acquire a write lock asynchronously, blocking for up to the specified timeout.

§Arguments
  • timeout - The maximum duration to wait for the write lock.
§Returns

An Option containing a RwLockWriteGuard if the write lock was successfully acquired within the timeout, or None if the timeout expired.

Trait Implementations§

Source§

impl<T> Default for RocketMQTokioRwLock<T>
where T: Default,

Source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<T> !Freeze for RocketMQTokioRwLock<T>

§

impl<T> !RefUnwindSafe for RocketMQTokioRwLock<T>

§

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

§

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

§

impl<T> Unpin for RocketMQTokioRwLock<T>
where T: Unpin + ?Sized,

§

impl<T> !UnwindSafe for RocketMQTokioRwLock<T>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where 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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more