oxirs-fuseki 0.2.4

SPARQL 1.1/1.2 HTTP protocol server with Fuseki-compatible configuration
Documentation
//! # Store - Trait Implementations
//!
//! This module contains trait implementations for `Store`.
//!
//! ## Implemented Traits
//!
//! - `Debug`
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::*;

impl std::fmt::Debug for Store {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Store")
            .field("default_store", &"CoreStore")
            .field("datasets", &"<datasets>")
            .field("query_engine", &"QueryEngine")
            .field("metadata", &self.metadata)
            .finish()
    }
}

impl Default for Store {
    fn default() -> Self {
        Self::new().expect("Store creation should succeed")
    }
}