pub enum IsolationLevel {
ReadUncommitted,
ReadCommitted,
RepeatableRead,
Serializable,
}Variants§
Trait Implementations§
Source§impl Debug for IsolationLevel
impl Debug for IsolationLevel
Source§impl<'de> Deserialize<'de> for IsolationLevel
impl<'de> Deserialize<'de> for IsolationLevel
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 IsolationLevelwhere
Self: DeserializeOwned,
impl FromWasmAbi for IsolationLevelwhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for IsolationLevelwhere
Self: Serialize,
impl IntoWasmAbi for IsolationLevelwhere
Self: Serialize,
Source§impl OptionFromWasmAbi for IsolationLevelwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for IsolationLevelwhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for IsolationLevelwhere
Self: Serialize,
impl OptionIntoWasmAbi for IsolationLevelwhere
Self: Serialize,
Source§impl Serialize for IsolationLevel
impl Serialize for IsolationLevel
Source§impl Tsify for IsolationLevel
impl Tsify for IsolationLevel
Auto Trait Implementations§
impl Freeze for IsolationLevel
impl RefUnwindSafe for IsolationLevel
impl Send for IsolationLevel
impl Sync for IsolationLevel
impl Unpin for IsolationLevel
impl UnwindSafe for IsolationLevel
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.