pub trait MaybeTriple: Send {
// Required method
fn add_triple(&mut self, quad: impl FnOnce() -> Triple);
}Required Methods§
fn add_triple(&mut self, quad: impl FnOnce() -> Triple)
Available on crate feature
rdf only.Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl MaybeTriple for ()
impl MaybeTriple for ()
Source§fn add_triple(&mut self, _: impl FnOnce() -> Triple)
fn add_triple(&mut self, _: impl FnOnce() -> Triple)
Available on crate feature
rdf only.