Struct prql_compiler::ast::pl::frame::FrameInput
source · pub struct FrameInput {
pub id: usize,
pub name: String,
pub table: Option<Ident>,
}Fields§
§id: usizeid of the node in AST that declares this input
name: Stringlocal name of this input within a query
table: Option<Ident>fully qualified name of table that provides the data for this frame
None means this is a literal and doesn’t need a table to refer to
Trait Implementations§
source§impl Clone for FrameInput
impl Clone for FrameInput
source§fn clone(&self) -> FrameInput
fn clone(&self) -> FrameInput
Returns a copy 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 FrameInput
impl Debug for FrameInput
source§impl<'de> Deserialize<'de> for FrameInput
impl<'de> Deserialize<'de> for FrameInput
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<FrameInput> for FrameInput
impl PartialEq<FrameInput> for FrameInput
source§fn eq(&self, other: &FrameInput) -> bool
fn eq(&self, other: &FrameInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.