shex_ast 0.2.18

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
#[derive(Deserialize, Serialize, Debug, PartialEq)]
pub struct ObjectLiteral {
    value: String,
    language: Option<String>,

    #[serde(rename = "type")]
    type_: Option<String>,
}