pub enum FunctionParallel {
Unsafe,
Restricted,
Safe,
}
Expand description
If it is safe for PostgreSQL to call the function from multiple threads at once
Variants§
Trait Implementations§
Source§impl Clone for FunctionParallel
impl Clone for FunctionParallel
Source§fn clone(&self) -> FunctionParallel
fn clone(&self) -> FunctionParallel
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FunctionParallel
impl Debug for FunctionParallel
Source§impl<'de> Deserialize<'de> for FunctionParallel
impl<'de> Deserialize<'de> for FunctionParallel
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 Display for FunctionParallel
impl Display for FunctionParallel
Source§impl Hash for FunctionParallel
impl Hash for FunctionParallel
Source§impl Ord for FunctionParallel
impl Ord for FunctionParallel
Source§fn cmp(&self, other: &FunctionParallel) -> Ordering
fn cmp(&self, other: &FunctionParallel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FunctionParallel
impl PartialEq for FunctionParallel
Source§impl PartialOrd for FunctionParallel
impl PartialOrd for FunctionParallel
Source§impl Serialize for FunctionParallel
impl Serialize for FunctionParallel
Source§impl Visit for FunctionParallel
impl Visit for FunctionParallel
Source§impl VisitMut for FunctionParallel
impl VisitMut for FunctionParallel
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for FunctionParallel
impl StructuralPartialEq for FunctionParallel
Auto Trait Implementations§
impl Freeze for FunctionParallel
impl RefUnwindSafe for FunctionParallel
impl Send for FunctionParallel
impl Sync for FunctionParallel
impl Unpin for FunctionParallel
impl UnwindSafe for FunctionParallel
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