pub struct DiffInputs {
pub file_a: PathBuf,
pub file_b: PathBuf,
pub format_a: Option<InputFormat>,
pub format_b: Option<InputFormat>,
pub graph_a: Option<String>,
pub graph_b: Option<String>,
pub ignore_blank_nodes: bool,
}Fields§
§file_a: PathBuf§file_b: PathBuf§format_a: Option<InputFormat>§format_b: Option<InputFormat>§graph_a: Option<String>§graph_b: Option<String>§ignore_blank_nodes: boolWhen true, blank-node-bearing statements are skipped instead of canonicalised via RDFC-1.0.
Trait Implementations§
Source§impl Clone for DiffInputs
impl Clone for DiffInputs
Source§fn clone(&self) -> DiffInputs
fn clone(&self) -> DiffInputs
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DiffInputs
impl RefUnwindSafe for DiffInputs
impl Send for DiffInputs
impl Sync for DiffInputs
impl Unpin for DiffInputs
impl UnsafeUnpin for DiffInputs
impl UnwindSafe for DiffInputs
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