pub struct TransactionOptions {
pub isolation_level: IsolationLevel,
pub timeout_ms: Option<u32>,
}Fields§
§isolation_level: IsolationLevel§timeout_ms: Option<u32>Trait Implementations§
Source§impl Debug for TransactionOptions
impl Debug for TransactionOptions
Source§impl<'de> Deserialize<'de> for TransactionOptions
impl<'de> Deserialize<'de> for TransactionOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromWasmAbi for TransactionOptionswhere
Self: DeserializeOwned,
impl FromWasmAbi for TransactionOptionswhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for TransactionOptionswhere
Self: Serialize,
impl IntoWasmAbi for TransactionOptionswhere
Self: Serialize,
Source§impl OptionFromWasmAbi for TransactionOptionswhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for TransactionOptionswhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for TransactionOptionswhere
Self: Serialize,
impl OptionIntoWasmAbi for TransactionOptionswhere
Self: Serialize,
Source§impl Serialize for TransactionOptions
impl Serialize for TransactionOptions
Source§impl Tsify for TransactionOptions
impl Tsify for TransactionOptions
Auto Trait Implementations§
impl Freeze for TransactionOptions
impl RefUnwindSafe for TransactionOptions
impl Send for TransactionOptions
impl Sync for TransactionOptions
impl Unpin for TransactionOptions
impl UnwindSafe for TransactionOptions
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> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.