pub struct ExecuteParameter {
pub name: String,
pub value: Expression,
}Expand description
Named parameter in EXEC statement: @name=value
Fields§
§name: StringParameter name (including @)
value: ExpressionParameter value
Trait Implementations§
Source§impl Clone for ExecuteParameter
impl Clone for ExecuteParameter
Source§fn clone(&self) -> ExecuteParameter
fn clone(&self) -> ExecuteParameter
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 ExecuteParameter
impl Debug for ExecuteParameter
Source§impl<'de> Deserialize<'de> for ExecuteParameter
impl<'de> Deserialize<'de> for ExecuteParameter
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 ExecuteParameter
impl PartialEq for ExecuteParameter
Source§impl Serialize for ExecuteParameter
impl Serialize for ExecuteParameter
impl StructuralPartialEq for ExecuteParameter
Auto Trait Implementations§
impl Freeze for ExecuteParameter
impl RefUnwindSafe for ExecuteParameter
impl Send for ExecuteParameter
impl Sync for ExecuteParameter
impl Unpin for ExecuteParameter
impl UnwindSafe for ExecuteParameter
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