#[non_exhaustive]pub enum SparqlValueType {
Unbound,
Uri,
String,
Integer,
Double,
Datetime,
BlankNode,
Boolean,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for SparqlValueType
impl Clone for SparqlValueType
Source§fn clone(&self) -> SparqlValueType
fn clone(&self) -> SparqlValueType
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 SparqlValueType
impl Debug for SparqlValueType
Source§impl Hash for SparqlValueType
impl Hash for SparqlValueType
Source§impl Ord for SparqlValueType
impl Ord for SparqlValueType
Source§fn cmp(&self, other: &SparqlValueType) -> Ordering
fn cmp(&self, other: &SparqlValueType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SparqlValueType
impl PartialEq for SparqlValueType
Source§impl PartialOrd for SparqlValueType
impl PartialOrd for SparqlValueType
impl Copy for SparqlValueType
impl Eq for SparqlValueType
impl StructuralPartialEq for SparqlValueType
Auto Trait Implementations§
impl Freeze for SparqlValueType
impl RefUnwindSafe for SparqlValueType
impl Send for SparqlValueType
impl Sync for SparqlValueType
impl Unpin for SparqlValueType
impl UnsafeUnpin for SparqlValueType
impl UnwindSafe for SparqlValueType
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