pub enum TargetSet {
Statement,
Entity,
Episode,
Chunk,
Community,
}Expand description
Set of target kinds the query is asking for. Default is Statement.
Statement covers the post-conditions for retrieval; the others exist for
store-side execution only (entity-targeted queries still yield Statement
hits whose subject equals the entity).
Variants§
Trait Implementations§
impl Copy for TargetSet
Source§impl<'de> Deserialize<'de> for TargetSet
impl<'de> Deserialize<'de> for TargetSet
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TargetSet
impl StructuralPartialEq for TargetSet
Auto Trait Implementations§
impl Freeze for TargetSet
impl RefUnwindSafe for TargetSet
impl Send for TargetSet
impl Sync for TargetSet
impl Unpin for TargetSet
impl UnsafeUnpin for TargetSet
impl UnwindSafe for TargetSet
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