Struct logic_lock::Lock

source ·
pub struct Lock<C>where
    C: ConnectionTrait + Debug,{ /* private fields */ }
Expand description

Lock entity

Implementations§

source§

impl<C> Lock<C>where C: ConnectionTrait + Debug,

source

pub async fn build<S>( key: S, conn: C, timeout: Option<u8> ) -> Result<Lock<C>, Lock<C>>where S: Into<String> + Debug,

Lock builder Takes anything can become a String as key, an owned connection (it can be a sea_orm::DatabaseConnection, a sea_orm::DatabaseTransaction or another Lock` himself), and an optional timeout in seconds, defaulting to 1 second

source

pub fn get_key(&self) -> &str

returns locked key

source

pub async fn release(self) -> Result<C, Unlock<C>>

releases the lock, returning the owned connection on success on error it will return the Lock himself alongside with the database error, if any

source

pub fn into_inner(self) -> C

forgets the lock and returns inner connection WARNING: the lock will continue to live in the database session

Trait Implementations§

source§

impl<C> ConnectionTrait for Lock<C>where C: ConnectionTrait + Debug + Send,

source§

fn get_database_backend(&self) -> DbBackend

Fetch the database backend as specified in DbBackend. This depends on feature flags enabled.
source§

fn execute<'life0, 'async_trait>( &'life0 self, stmt: Statement ) -> Pin<Box<dyn Future<Output = Result<ExecResult, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement
source§

fn execute_unprepared<'life0, 'life1, 'async_trait>( &'life0 self, sql: &'life1 str ) -> Pin<Box<dyn Future<Output = Result<ExecResult, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Execute a unprepared Statement
source§

fn query_one<'life0, 'async_trait>( &'life0 self, stmt: Statement ) -> Pin<Box<dyn Future<Output = Result<Option<QueryResult>, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement and return a query
source§

fn query_all<'life0, 'async_trait>( &'life0 self, stmt: Statement ) -> Pin<Box<dyn Future<Output = Result<Vec<QueryResult>, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Execute a Statement and return a collection Vec<QueryResult> on success
source§

fn support_returning(&self) -> bool

Check if the connection supports RETURNING syntax on insert and update
source§

fn is_mock_connection(&self) -> bool

Check if the connection is a test connection for the Mock database
source§

impl<C> Debug for Lock<C>where C: ConnectionTrait + Debug + Debug,

source§

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

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

impl<C> Drop for Lock<C>where C: ConnectionTrait + Debug,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<C> StreamTrait for Lock<C>where C: ConnectionTrait + StreamTrait + Debug,

§

type Stream<'a> = <C as StreamTrait>::Stream<'a> where Self: 'a

Create a stream for the QueryResult
source§

fn stream<'a>( &'a self, stmt: Statement ) -> Pin<Box<dyn Future<Output = Result<Self::Stream<'a>, DbErr>> + Send + 'a>>

Execute a Statement and return a stream of results
source§

impl<C> TransactionTrait for Lock<C>where C: ConnectionTrait + TransactionTrait + Debug + Send,

source§

fn begin<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<DatabaseTransaction, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Execute SQL BEGIN transaction. Returns a Transaction that can be committed or rolled back
source§

fn begin_with_config<'life0, 'async_trait>( &'life0 self, isolation_level: Option<IsolationLevel>, access_mode: Option<AccessMode> ) -> Pin<Box<dyn Future<Output = Result<DatabaseTransaction, DbErr>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Execute SQL BEGIN transaction with isolation level and/or access mode. Returns a Transaction that can be committed or rolled back
source§

fn transaction<'life0, 'async_trait, F, T, E>( &'life0 self, callback: F ) -> Pin<Box<dyn Future<Output = Result<T, TransactionError<E>>> + Send + 'async_trait>>where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'c>> + Send + 'async_trait, T: Send + 'async_trait, E: Error + Send + 'async_trait, Self: 'async_trait, 'life0: 'async_trait,

Execute the function inside a transaction. If the function returns an error, the transaction will be rolled back. If it does not return an error, the transaction will be committed.
source§

fn transaction_with_config<'life0, 'async_trait, F, T, E>( &'life0 self, callback: F, isolation_level: Option<IsolationLevel>, access_mode: Option<AccessMode> ) -> Pin<Box<dyn Future<Output = Result<T, TransactionError<E>>> + Send + 'async_trait>>where F: for<'c> FnOnce(&'c DatabaseTransaction) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'c>> + Send + 'async_trait, T: Send + 'async_trait, E: Error + Send + 'async_trait, Self: 'async_trait, 'life0: 'async_trait,

Execute the function inside a transaction with isolation level and/or access mode. If the function returns an error, the transaction will be rolled back. If it does not return an error, the transaction will be committed.

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for Lock<C>where C: RefUnwindSafe,

§

impl<C> Send for Lock<C>where C: Send,

§

impl<C> Sync for Lock<C>

§

impl<C> Unpin for Lock<C>where C: Unpin,

§

impl<C> UnwindSafe for Lock<C>where C: 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> 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 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.
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