pub struct Connection { /* private fields */ }Expand description
A connection to a SQLite database.
Implementations§
Source§impl Connection
impl Connection
Sourcepub fn busy_timeout(&self, timeout: Duration) -> Result<(), Error>
pub fn busy_timeout(&self, timeout: Duration) -> Result<(), Error>
Set a busy handler that sleeps for a specified amount of time when a table is locked. The handler will sleep multiple times until at least “ms” milliseconds of sleeping have accumulated.
Calling this routine with an argument equal to zero turns off all busy handlers.
There can only be a single busy handler for a particular database
connection at any given moment. If another busy handler was defined
(using busy_handler) prior to calling this routine, that other
busy handler is cleared.
Sourcepub fn busy_handler(
&self,
callback: Option<fn(i32) -> bool>,
) -> Result<(), Error>
pub fn busy_handler( &self, callback: Option<fn(i32) -> bool>, ) -> Result<(), Error>
Register a callback to handle SQLITE_BUSY errors.
If the busy callback is None, then SQLITE_BUSY is returned immediately upon encountering the lock. The argument to the busy
handler callback is the number of times that the
busy handler has been invoked previously for the
same locking event. If the busy callback returns false, then no
additional attempts are made to access the
database and SQLITE_BUSY is returned to the
application. If the callback returns true, then another attempt
is made to access the database and the cycle repeats.
There can only be a single busy handler defined for each database
connection. Setting a new busy handler clears any previously set
handler. Note that calling busy_timeout() or evaluating PRAGMA busy_timeout=N will change the busy handler and thus
clear any previously set busy handler.
Source§impl Connection
impl Connection
Sourcepub fn prepare_cached(&self, sql: &str) -> Result<CachedStatement<'_>, Error>
pub fn prepare_cached(&self, sql: &str) -> Result<CachedStatement<'_>, Error>
Prepare a SQL statement for execution, returning a previously prepared
(but not currently in-use) statement if one is available. The
returned statement will be cached for reuse by future calls to
prepare_cached once it is dropped.
fn insert_new_people(conn: &Connection) -> Result<()> {
{
let mut stmt = conn.prepare_cached("INSERT INTO People (name) VALUES (?)")?;
stmt.execute(&["Joe Smith"])?;
}
{
// This will return the same underlying SQLite statement handle without
// having to prepare it again.
let mut stmt = conn.prepare_cached("INSERT INTO People (name) VALUES (?)")?;
stmt.execute(&["Bob Jones"])?;
}
Ok(())
}§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn set_prepared_statement_cache_capacity(&self, capacity: usize)
pub fn set_prepared_statement_cache_capacity(&self, capacity: usize)
Set the maximum number of cached prepared statements this connection will hold. By default, a connection will hold a relatively small number of cached statements. If you need more, or know that you will not use cached statements, you can set the capacity manually using this method.
Sourcepub fn flush_prepared_statement_cache(&self)
pub fn flush_prepared_statement_cache(&self)
Remove/finalize all prepared statements currently in the cache.
Source§impl Connection
impl Connection
Sourcepub fn db_config(&self, config: DbConfig) -> Result<bool, Error>
pub fn db_config(&self, config: DbConfig) -> Result<bool, Error>
Returns the current value of a config.
- SQLITE_DBCONFIG_ENABLE_FKEY: return
falseortrueto indicate whether FK enforcement is off or on - SQLITE_DBCONFIG_ENABLE_TRIGGER: return
falseortrueto indicate whether triggers are disabled or enabled - SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER: return
falseortrueto indicate whether fts3_tokenizer are disabled or enabled - SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE: return
falseto indicate checkpoints-on-close are not disabled ortrueif they are - SQLITE_DBCONFIG_ENABLE_QPSG: return
falseortrueto indicate whether the QPSG is disabled or enabled - SQLITE_DBCONFIG_TRIGGER_EQP: return
falseto indicate output-for-trigger are not disabled ortrueif it is
Sourcepub fn set_db_config(
&self,
config: DbConfig,
new_val: bool,
) -> Result<bool, Error>
pub fn set_db_config( &self, config: DbConfig, new_val: bool, ) -> Result<bool, Error>
Make configuration changes to a database connection
- SQLITE_DBCONFIG_ENABLE_FKEY:
falseto disable FK enforcement,trueto enable FK enforcement - SQLITE_DBCONFIG_ENABLE_TRIGGER:
falseto disable triggers,trueto enable triggers - SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER:
falseto disable fts3_tokenizer(),trueto enable fts3_tokenizer() - SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE:
false(the default) to enable checkpoints-on-close,trueto disable them - SQLITE_DBCONFIG_ENABLE_QPSG:
falseto disable the QPSG,trueto enable QPSG - SQLITE_DBCONFIG_TRIGGER_EQP:
falseto disable output for trigger programs,trueto enable it
Source§impl Connection
impl Connection
Sourcepub fn pragma_query_value<T, F>(
&self,
schema_name: Option<DatabaseName<'_>>,
pragma_name: &str,
f: F,
) -> Result<T, Error>
pub fn pragma_query_value<T, F>( &self, schema_name: Option<DatabaseName<'_>>, pragma_name: &str, f: F, ) -> Result<T, Error>
Query the current value of pragma_name.
Some pragmas will return multiple rows/values which cannot be retrieved with this method.
Prefer PRAGMA function introduced in SQLite 3.20:
SELECT user_version FROM pragma_user_version;
Sourcepub fn pragma_query<F>(
&self,
schema_name: Option<DatabaseName<'_>>,
pragma_name: &str,
f: F,
) -> Result<(), Error>
pub fn pragma_query<F>( &self, schema_name: Option<DatabaseName<'_>>, pragma_name: &str, f: F, ) -> Result<(), Error>
Query the current rows/values of pragma_name.
Prefer PRAGMA function introduced in SQLite 3.20:
SELECT * FROM pragma_collation_list;
Sourcepub fn pragma<F>(
&self,
schema_name: Option<DatabaseName<'_>>,
pragma_name: &str,
pragma_value: &dyn ToSql,
f: F,
) -> Result<(), Error>
pub fn pragma<F>( &self, schema_name: Option<DatabaseName<'_>>, pragma_name: &str, pragma_value: &dyn ToSql, f: F, ) -> Result<(), Error>
Query the current value(s) of pragma_name associated to
pragma_value.
This method can be used with query-only pragmas which need an argument
(e.g. table_info('one_tbl')) or pragmas which returns value(s)
(e.g. integrity_check).
Prefer PRAGMA function introduced in SQLite 3.20:
SELECT * FROM pragma_table_info(?);
Sourcepub fn pragma_update(
&self,
schema_name: Option<DatabaseName<'_>>,
pragma_name: &str,
pragma_value: &dyn ToSql,
) -> Result<(), Error>
pub fn pragma_update( &self, schema_name: Option<DatabaseName<'_>>, pragma_name: &str, pragma_value: &dyn ToSql, ) -> Result<(), Error>
Set a new value to pragma_name.
Some pragmas will return the updated value which cannot be retrieved with this method.
Sourcepub fn pragma_update_and_check<F, T>(
&self,
schema_name: Option<DatabaseName<'_>>,
pragma_name: &str,
pragma_value: &dyn ToSql,
f: F,
) -> Result<T, Error>
pub fn pragma_update_and_check<F, T>( &self, schema_name: Option<DatabaseName<'_>>, pragma_name: &str, pragma_value: &dyn ToSql, f: F, ) -> Result<T, Error>
Set a new value to pragma_name and return the updated value.
Only few pragmas automatically return the updated value.
Source§impl Connection
impl Connection
Sourcepub fn transaction(&mut self) -> Result<Transaction<'_>, Error>
pub fn transaction(&mut self) -> Result<Transaction<'_>, Error>
Begin a new transaction with the default behavior (DEFERRED).
The transaction defaults to rolling back when it is dropped. If you
want the transaction to commit, you must call commit or
set_drop_behavior(DropBehavior::Commit).
§Example
fn perform_queries(conn: &mut Connection) -> Result<()> {
let tx = conn.transaction()?;
do_queries_part_1(&tx)?; // tx causes rollback if this fails
do_queries_part_2(&tx)?; // tx causes rollback if this fails
tx.commit()
}§Failure
Will return Err if the underlying SQLite call fails.
Sourcepub fn transaction_with_behavior(
&mut self,
behavior: TransactionBehavior,
) -> Result<Transaction<'_>, Error>
pub fn transaction_with_behavior( &mut self, behavior: TransactionBehavior, ) -> Result<Transaction<'_>, Error>
Begin a new transaction with a specified behavior.
See transaction.
§Failure
Will return Err if the underlying SQLite call fails.
Sourcepub fn savepoint(&mut self) -> Result<Savepoint<'_>, Error>
pub fn savepoint(&mut self) -> Result<Savepoint<'_>, Error>
Begin a new savepoint with the default behavior (DEFERRED).
The savepoint defaults to rolling back when it is dropped. If you want
the savepoint to commit, you must call commit or
set_drop_behavior(DropBehavior::Commit).
§Example
fn perform_queries(conn: &mut Connection) -> Result<()> {
let sp = conn.savepoint()?;
do_queries_part_1(&sp)?; // sp causes rollback if this fails
do_queries_part_2(&sp)?; // sp causes rollback if this fails
sp.commit()
}§Failure
Will return Err if the underlying SQLite call fails.
Source§impl Connection
impl Connection
Sourcepub fn open<P>(path: P) -> Result<Connection, Error>
pub fn open<P>(path: P) -> Result<Connection, Error>
Open a new connection to a SQLite database.
Connection::open(path) is equivalent to
Connection::open_with_flags(path, OpenFlags::SQLITE_OPEN_READ_WRITE | OpenFlags::SQLITE_OPEN_CREATE).
fn open_my_db() -> Result<()> {
let path = "./my_db.db3";
let db = Connection::open(&path)?;
println!("{}", db.is_autocommit());
Ok(())
}§Failure
Will return Err if path cannot be converted to a C-compatible
string or if the underlying SQLite open call fails.
Sourcepub fn open_in_memory() -> Result<Connection, Error>
pub fn open_in_memory() -> Result<Connection, Error>
Open a new connection to an in-memory SQLite database.
§Failure
Will return Err if the underlying SQLite open call fails.
Sourcepub fn open_with_flags<P>(
path: P,
flags: OpenFlags,
) -> Result<Connection, Error>
pub fn open_with_flags<P>( path: P, flags: OpenFlags, ) -> Result<Connection, Error>
Open a new connection to a SQLite database.
Database Connection for a description of valid flag combinations.
§Failure
Will return Err if path cannot be converted to a C-compatible
string or if the underlying SQLite open call fails.
Sourcepub fn open_in_memory_with_flags(flags: OpenFlags) -> Result<Connection, Error>
pub fn open_in_memory_with_flags(flags: OpenFlags) -> Result<Connection, Error>
Open a new connection to an in-memory SQLite database.
Database Connection for a description of valid flag combinations.
§Failure
Will return Err if the underlying SQLite open call fails.
Sourcepub fn execute_batch(&self, sql: &str) -> Result<(), Error>
pub fn execute_batch(&self, sql: &str) -> Result<(), Error>
Convenience method to run multiple SQL statements (that cannot take any parameters).
Uses sqlite3_exec under the hood.
§Example
fn create_tables(conn: &Connection) -> Result<()> {
conn.execute_batch(
"BEGIN;
CREATE TABLE foo(x INTEGER);
CREATE TABLE bar(y TEXT);
COMMIT;",
)
}§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn execute<P>(&self, sql: &str, params: P) -> Result<usize, Error>
pub fn execute<P>(&self, sql: &str, params: P) -> Result<usize, Error>
Convenience method to prepare and execute a single SQL statement.
On success, returns the number of rows that were changed or inserted or
deleted (via sqlite3_changes).
§Example
fn update_rows(conn: &Connection) {
match conn.execute("UPDATE foo SET bar = 'baz' WHERE qux = ?", &[1i32]) {
Ok(updated) => println!("{} rows were updated", updated),
Err(err) => println!("update failed: {}", err),
}
}§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn execute_named(
&self,
sql: &str,
params: &[(&str, &dyn ToSql)],
) -> Result<usize, Error>
pub fn execute_named( &self, sql: &str, params: &[(&str, &dyn ToSql)], ) -> Result<usize, Error>
Convenience method to prepare and execute a single SQL statement with named parameter(s).
On success, returns the number of rows that were changed or inserted or
deleted (via sqlite3_changes).
§Example
fn insert(conn: &Connection) -> Result<usize> {
conn.execute_named(
"INSERT INTO test (name) VALUES (:name)",
&[(":name", &"one")],
)
}§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn last_insert_rowid(&self) -> i64
pub fn last_insert_rowid(&self) -> i64
Get the SQLite rowid of the most recent successful INSERT.
Uses sqlite3_last_insert_rowid under the hood.
Sourcepub fn query_row<T, P, F>(&self, sql: &str, params: P, f: F) -> Result<T, Error>
pub fn query_row<T, P, F>(&self, sql: &str, params: P, f: F) -> Result<T, Error>
Convenience method to execute a query that is expected to return a single row.
§Example
fn preferred_locale(conn: &Connection) -> Result<String> {
conn.query_row(
"SELECT value FROM preferences WHERE name='locale'",
NO_PARAMS,
|row| row.get(0),
)
}If the query returns more than one row, all rows except the first are ignored.
Returns Err(QueryReturnedNoRows) if no results are returned. If the
query truly is optional, you can call .optional() on the result of
this to get a Result<Option<T>>.
§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn query_row_named<T, F>(
&self,
sql: &str,
params: &[(&str, &dyn ToSql)],
f: F,
) -> Result<T, Error>
pub fn query_row_named<T, F>( &self, sql: &str, params: &[(&str, &dyn ToSql)], f: F, ) -> Result<T, Error>
Convenience method to execute a query with named parameter(s) that is expected to return a single row.
If the query returns more than one row, all rows except the first are ignored.
Returns Err(QueryReturnedNoRows) if no results are returned. If the
query truly is optional, you can call .optional() on the result of
this to get a Result<Option<T>>.
§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn query_row_and_then<T, E, P, F>(
&self,
sql: &str,
params: P,
f: F,
) -> Result<T, E>where
P: IntoIterator,
<P as IntoIterator>::Item: ToSql,
F: FnOnce(&Row<'_>) -> Result<T, E>,
E: From<Error>,
pub fn query_row_and_then<T, E, P, F>(
&self,
sql: &str,
params: P,
f: F,
) -> Result<T, E>where
P: IntoIterator,
<P as IntoIterator>::Item: ToSql,
F: FnOnce(&Row<'_>) -> Result<T, E>,
E: From<Error>,
Convenience method to execute a query that is expected to return a
single row, and execute a mapping via f on that returned row with
the possibility of failure. The Result type of f must implement
std::convert::From<Error>.
§Example
fn preferred_locale(conn: &Connection) -> Result<String> {
conn.query_row_and_then(
"SELECT value FROM preferences WHERE name='locale'",
NO_PARAMS,
|row| row.get(0),
)
}If the query returns more than one row, all rows except the first are ignored.
§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn prepare(&self, sql: &str) -> Result<Statement<'_>, Error>
pub fn prepare(&self, sql: &str) -> Result<Statement<'_>, Error>
Prepare a SQL statement for execution.
§Example
fn insert_new_people(conn: &Connection) -> Result<()> {
let mut stmt = conn.prepare("INSERT INTO People (name) VALUES (?)")?;
stmt.execute(&["Joe Smith"])?;
stmt.execute(&["Bob Jones"])?;
Ok(())
}§Failure
Will return Err if sql cannot be converted to a C-compatible string
or if the underlying SQLite call fails.
Sourcepub fn close(self) -> Result<(), (Connection, Error)>
pub fn close(self) -> Result<(), (Connection, Error)>
Close the SQLite connection.
This is functionally equivalent to the Drop implementation for
Connection except that on failure, it returns an error and the
connection itself (presumably so closing can be attempted again).
§Failure
Will return Err if the underlying SQLite call fails.
Sourcepub unsafe fn handle(&self) -> *mut sqlite3
pub unsafe fn handle(&self) -> *mut sqlite3
Get access to the underlying SQLite database connection handle.
§Warning
You should not need to use this function. If you do need to, please open an issue on the rusqlite repository and describe your use case.
§Safety
This function is unsafe because it gives you raw access
to the SQLite connection, and what you do with it could impact the
safety of this Connection.
Sourcepub unsafe fn from_handle(db: *mut sqlite3) -> Result<Connection, Error>
pub unsafe fn from_handle(db: *mut sqlite3) -> Result<Connection, Error>
Create a Connection from a raw handle.
The underlying SQLite database connection handle will not be closed when the returned connection is dropped/closed.
Sourcepub fn get_interrupt_handle(&self) -> InterruptHandle
pub fn get_interrupt_handle(&self) -> InterruptHandle
Get access to a handle that can be used to interrupt long running queries from another thread.
Sourcepub fn is_autocommit(&self) -> bool
pub fn is_autocommit(&self) -> bool
Test for auto-commit mode. Autocommit mode is on by default.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Connection
impl !RefUnwindSafe for Connection
impl !Sync for Connection
impl Unpin for Connection
impl UnwindSafe for Connection
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
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> PipeAsRef for T
impl<T> PipeAsRef for T
Source§impl<T> PipeBorrow for T
impl<T> PipeBorrow for T
Source§impl<T> PipeDeref for T
impl<T> PipeDeref for T
Source§impl<T> PipeRef for T
impl<T> PipeRef for T
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
fn tap<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
Source§fn tap_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
fn tap_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&Self) -> R,
tap in debug builds, and does nothing in release builds.Source§fn tap_mut<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
fn tap_mut<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
Source§fn tap_mut_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
fn tap_mut_dbg<F, R>(self, func: F) -> Selfwhere
F: FnOnce(&mut Self) -> R,
tap_mut in debug builds, and does nothing in release builds.Source§impl<T, U> TapAsRef<U> for Twhere
U: ?Sized,
impl<T, U> TapAsRef<U> for Twhere
U: ?Sized,
Source§fn tap_ref<F, R>(self, func: F) -> Self
fn tap_ref<F, R>(self, func: F) -> Self
Source§fn tap_ref_dbg<F, R>(self, func: F) -> Self
fn tap_ref_dbg<F, R>(self, func: F) -> Self
tap_ref in debug builds, and does nothing in release builds.Source§fn tap_ref_mut<F, R>(self, func: F) -> Self
fn tap_ref_mut<F, R>(self, func: F) -> Self
Source§impl<T, U> TapBorrow<U> for Twhere
U: ?Sized,
impl<T, U> TapBorrow<U> for Twhere
U: ?Sized,
Source§fn tap_borrow<F, R>(self, func: F) -> Self
fn tap_borrow<F, R>(self, func: F) -> Self
Source§fn tap_borrow_dbg<F, R>(self, func: F) -> Self
fn tap_borrow_dbg<F, R>(self, func: F) -> Self
tap_borrow in debug builds, and does nothing in release builds.Source§fn tap_borrow_mut<F, R>(self, func: F) -> Self
fn tap_borrow_mut<F, R>(self, func: F) -> Self
Source§impl<T> TapDeref for T
impl<T> TapDeref for T
Source§fn tap_deref_dbg<F, R>(self, func: F) -> Self
fn tap_deref_dbg<F, R>(self, func: F) -> Self
tap_deref in debug builds, and does nothing in release builds.Source§fn tap_deref_mut<F, R>(self, func: F) -> Self
fn tap_deref_mut<F, R>(self, func: F) -> Self
self for modification.