pub struct FunctionSetOption {
pub name: String,
pub value: FunctionSetValue,
}Expand description
A SET option in CREATE FUNCTION (PostgreSQL)
Fields§
§name: String§value: FunctionSetValueTrait Implementations§
Source§impl Clone for FunctionSetOption
impl Clone for FunctionSetOption
Source§fn clone(&self) -> FunctionSetOption
fn clone(&self) -> FunctionSetOption
Returns a duplicate 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 FunctionSetOption
impl Debug for FunctionSetOption
Source§impl<'de> Deserialize<'de> for FunctionSetOption
impl<'de> Deserialize<'de> for FunctionSetOption
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 PartialEq for FunctionSetOption
impl PartialEq for FunctionSetOption
Source§impl Serialize for FunctionSetOption
impl Serialize for FunctionSetOption
impl StructuralPartialEq for FunctionSetOption
Auto Trait Implementations§
impl Freeze for FunctionSetOption
impl RefUnwindSafe for FunctionSetOption
impl Send for FunctionSetOption
impl Sync for FunctionSetOption
impl Unpin for FunctionSetOption
impl UnwindSafe for FunctionSetOption
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