sparql_service 0.2.18

RDF data shapes implementation in Rust
Documentation
use crate::PropertyPartition;
use rudof_iri::IriS;
use rudof_rdf::rdf_core::term::IriOrBlankNode;
use serde::{Deserialize, Serialize};
use std::fmt::Display;

#[derive(Clone, PartialEq, Eq, Default, Debug, Hash, Serialize, Deserialize)]
pub struct ClassPartition {
    #[serde(skip_serializing_if = "Option::is_none")]
    id: Option<IriOrBlankNode>,
    class: IriS,
    #[serde(skip_serializing_if = "Vec::is_empty")]
    property_partition: Vec<PropertyPartition>,
}

impl ClassPartition {
    pub fn new(class: &IriS) -> Self {
        ClassPartition {
            id: None,
            class: class.clone(),
            property_partition: Vec::new(),
        }
    }

    pub fn with_id(mut self, id: &IriOrBlankNode) -> Self {
        self.id = Some(id.clone());
        self
    }

    pub fn with_property_partition(mut self, property_partition: Vec<PropertyPartition>) -> Self {
        self.property_partition = property_partition;
        self
    }

    pub fn class(&self) -> &IriS {
        &self.class
    }

    pub fn property_partition(&self) -> &Vec<PropertyPartition> {
        &self.property_partition
    }
}

impl Display for ClassPartition {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(
            f,
            "ClassPartition, class: {}\n  property partitions:\n{}\n End class partition {}",
            self.class,
            self.property_partition
                .iter()
                .map(|pp| pp.to_string())
                .collect::<Vec<_>>()
                .join("\n"),
            self.class
        )
    }
}