1// This is free and unencumbered software released into the public domain. 2 3use rdf_format::Format; 4 5#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)] 6pub struct ReaderOptions { 7 pub format: Option<Format>, 8}