pub struct QuerySpec {
pub subject: Option<String>,
pub predicate: Option<String>,
pub object: Option<String>,
pub namespace: Option<String>,
pub layer: Option<u8>,
pub include_deleted: bool,
}Expand description
Convenience re-export of the core store types using string-based namespaces. Filter specification for queries.
Fields§
§subject: Option<String>§predicate: Option<String>§object: Option<String>§namespace: Option<String>§layer: Option<u8>§include_deleted: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for QuerySpec
impl RefUnwindSafe for QuerySpec
impl Send for QuerySpec
impl Sync for QuerySpec
impl Unpin for QuerySpec
impl UnsafeUnpin for QuerySpec
impl UnwindSafe for QuerySpec
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