pub struct ParsedQuery {
pub sparql_query: String,
pub r2s: R2S,
pub s2r: Vec<WindowDefinition>,
}Fields§
§sparql_query: String§r2s: R2S§s2r: Vec<WindowDefinition>Implementations§
Source§impl ParsedQuery
impl ParsedQuery
pub fn new(sparql_query: String) -> Self
pub fn set_sparql_query(&mut self, query: String)
pub fn set_r2s(&mut self, operator: Operator, name: String)
pub fn add_s2r_window(&mut self, window: WindowDefinition)
Trait Implementations§
Source§impl Clone for ParsedQuery
impl Clone for ParsedQuery
Source§fn clone(&self) -> ParsedQuery
fn clone(&self) -> ParsedQuery
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 ParsedQuery
impl RefUnwindSafe for ParsedQuery
impl Send for ParsedQuery
impl Sync for ParsedQuery
impl Unpin for ParsedQuery
impl UnwindSafe for ParsedQuery
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