pub struct TransformFunctionFact {
pub name: String,
pub literal_args: Vec<String>,
pub column_args: Vec<ColumnReferenceFact>,
}Expand description
Compact fact about a function-like projection transform.
Fields§
§name: String§literal_args: Vec<String>§column_args: Vec<ColumnReferenceFact>Trait Implementations§
Source§impl Clone for TransformFunctionFact
impl Clone for TransformFunctionFact
Source§fn clone(&self) -> TransformFunctionFact
fn clone(&self) -> TransformFunctionFact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransformFunctionFact
impl Debug for TransformFunctionFact
Source§impl<'de> Deserialize<'de> for TransformFunctionFact
impl<'de> Deserialize<'de> for TransformFunctionFact
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
Auto Trait Implementations§
impl Freeze for TransformFunctionFact
impl RefUnwindSafe for TransformFunctionFact
impl Send for TransformFunctionFact
impl Sync for TransformFunctionFact
impl Unpin for TransformFunctionFact
impl UnsafeUnpin for TransformFunctionFact
impl UnwindSafe for TransformFunctionFact
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