pub enum SparqlKeyword {
Show 46 variants
Regex,
Substr,
Replace,
Exists,
Select,
Distinct,
Reduced,
Optional,
Union,
As,
Construct,
Where,
Describe,
Ask,
From,
Named,
Group,
By,
Having,
Order,
Asc,
Desc,
Limit,
Offset,
Values,
Load,
Silent,
Clear,
Drop,
Create,
Add,
Move,
Copy,
Insert,
Data,
Delete,
With,
Using,
Default,
All,
Graph,
Service,
Bind,
Undef,
Minus,
Filter,
}
Variants§
Regex
Substr
Replace
Exists
Select
Distinct
Reduced
Optional
Union
As
Construct
Where
Describe
Ask
From
Named
Group
By
Having
Order
Asc
Desc
Limit
Offset
Values
Load
Silent
Clear
Drop
Create
Add
Move
Copy
Insert
Data
Delete
With
Using
Default
All
Graph
Service
Bind
Undef
Minus
Filter
Implementations§
Source§impl SparqlKeyword
impl SparqlKeyword
pub fn is_regex(&self) -> bool
pub fn is_substr(&self) -> bool
pub fn is_replace(&self) -> bool
pub fn is_exists(&self) -> bool
pub fn is_select(&self) -> bool
pub fn is_distinct(&self) -> bool
pub fn is_reduced(&self) -> bool
pub fn is_optional(&self) -> bool
pub fn is_union(&self) -> bool
pub fn is_as(&self) -> bool
pub fn is_construct(&self) -> bool
pub fn is_where(&self) -> bool
pub fn is_describe(&self) -> bool
pub fn is_ask(&self) -> bool
pub fn is_from(&self) -> bool
pub fn is_named(&self) -> bool
pub fn is_group(&self) -> bool
pub fn is_by(&self) -> bool
pub fn is_having(&self) -> bool
pub fn is_order(&self) -> bool
pub fn is_asc(&self) -> bool
pub fn is_desc(&self) -> bool
pub fn is_limit(&self) -> bool
pub fn is_offset(&self) -> bool
pub fn is_values(&self) -> bool
pub fn is_load(&self) -> bool
pub fn is_silent(&self) -> bool
pub fn is_clear(&self) -> bool
pub fn is_drop(&self) -> bool
pub fn is_create(&self) -> bool
pub fn is_add(&self) -> bool
pub fn is_move(&self) -> bool
pub fn is_copy(&self) -> bool
pub fn is_insert(&self) -> bool
pub fn is_data(&self) -> bool
pub fn is_delete(&self) -> bool
pub fn is_with(&self) -> bool
pub fn is_using(&self) -> bool
pub fn is_default(&self) -> bool
pub fn is_all(&self) -> bool
pub fn is_graph(&self) -> bool
pub fn is_service(&self) -> bool
pub fn is_bind(&self) -> bool
pub fn is_undef(&self) -> bool
pub fn is_minus(&self) -> bool
pub fn is_filter(&self) -> bool
Trait Implementations§
Source§impl Clone for SparqlKeyword
impl Clone for SparqlKeyword
Source§fn clone(&self) -> SparqlKeyword
fn clone(&self) -> SparqlKeyword
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 SparqlKeyword
impl Debug for SparqlKeyword
Source§impl FromStr for SparqlKeyword
impl FromStr for SparqlKeyword
Source§impl Hash for SparqlKeyword
impl Hash for SparqlKeyword
Source§impl Membered for SparqlKeyword
impl Membered for SparqlKeyword
Source§impl PartialEq for SparqlKeyword
impl PartialEq for SparqlKeyword
impl Eq for SparqlKeyword
impl StructuralPartialEq for SparqlKeyword
Auto Trait Implementations§
impl Freeze for SparqlKeyword
impl RefUnwindSafe for SparqlKeyword
impl Send for SparqlKeyword
impl Sync for SparqlKeyword
impl Unpin for SparqlKeyword
impl UnwindSafe for SparqlKeyword
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more