#[repr(C)]pub enum QueryLanguage {
AQL = 0,
AQLQuirksV3 = 1,
}Expand description
An enum over all supported query languages of graphANNIS.
Currently, only the ANNIS Query Language (AQL) and its variants are supported, but this enum allows us to add a support for older query language versions or completely new query languages.
Variants§
Trait Implementations§
Source§impl Clone for QueryLanguage
impl Clone for QueryLanguage
Source§fn clone(&self) -> QueryLanguage
fn clone(&self) -> QueryLanguage
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 moreSource§impl Debug for QueryLanguage
impl Debug for QueryLanguage
Source§impl Default for QueryLanguage
impl Default for QueryLanguage
Source§fn default() -> QueryLanguage
fn default() -> QueryLanguage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryLanguage
impl<'de> Deserialize<'de> for QueryLanguage
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 Serialize for QueryLanguage
impl Serialize for QueryLanguage
impl Copy for QueryLanguage
Auto Trait Implementations§
impl Freeze for QueryLanguage
impl RefUnwindSafe for QueryLanguage
impl Send for QueryLanguage
impl Sync for QueryLanguage
impl Unpin for QueryLanguage
impl UnwindSafe for QueryLanguage
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<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