pub struct OutputParam {
pub name: String,
pub value: SqlValue,
}Expand description
An output parameter from a stored procedure call.
Fields§
§name: StringParameter name.
value: SqlValueParameter value.
Trait Implementations§
Source§impl Clone for OutputParam
impl Clone for OutputParam
Source§fn clone(&self) -> OutputParam
fn clone(&self) -> OutputParam
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 moreAuto Trait Implementations§
impl !Freeze for OutputParam
impl RefUnwindSafe for OutputParam
impl Send for OutputParam
impl Sync for OutputParam
impl Unpin for OutputParam
impl UnwindSafe for OutputParam
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