pub struct DlQueryResult {
pub expression: String,
pub normalized: String,
pub query_class_iri: String,
pub subclasses: Vec<String>,
pub superclasses: Vec<String>,
pub equivalents: Vec<String>,
pub instances: Vec<String>,
pub profile: String,
pub mode: DlQueryMode,
pub duration_ms: u64,
pub warnings: Vec<String>,
pub diagnostics: Vec<String>,
}Fields§
§expression: String§normalized: String§query_class_iri: String§subclasses: Vec<String>§superclasses: Vec<String>§equivalents: Vec<String>§instances: Vec<String>§profile: String§mode: DlQueryMode§duration_ms: u64§warnings: Vec<String>§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for DlQueryResult
impl Clone for DlQueryResult
Source§fn clone(&self) -> DlQueryResult
fn clone(&self) -> DlQueryResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DlQueryResult
impl Debug for DlQueryResult
Source§impl<'de> Deserialize<'de> for DlQueryResult
impl<'de> Deserialize<'de> for DlQueryResult
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
Auto Trait Implementations§
impl Freeze for DlQueryResult
impl RefUnwindSafe for DlQueryResult
impl Send for DlQueryResult
impl Sync for DlQueryResult
impl Unpin for DlQueryResult
impl UnsafeUnpin for DlQueryResult
impl UnwindSafe for DlQueryResult
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