pub struct ComputedFieldRow {
pub table_schema: String,
pub table_name: String,
pub function_schema: String,
pub function_name: String,
pub return_type: String,
pub returns_set: bool,
}Expand description
Row type returned from computed fields query
Fields§
§table_schema: String§table_name: String§function_schema: String§function_name: String§return_type: String§returns_set: boolTrait Implementations§
Source§impl Clone for ComputedFieldRow
impl Clone for ComputedFieldRow
Source§fn clone(&self) -> ComputedFieldRow
fn clone(&self) -> ComputedFieldRow
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 ComputedFieldRow
impl RefUnwindSafe for ComputedFieldRow
impl Send for ComputedFieldRow
impl Sync for ComputedFieldRow
impl Unpin for ComputedFieldRow
impl UnsafeUnpin for ComputedFieldRow
impl UnwindSafe for ComputedFieldRow
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