pub struct ExploreQuery {
pub query: String,
}Expand description
ExploreQuery struct to hold an Explore query.
Fields§
§query: StringImplementations§
Source§impl ExploreQuery
impl ExploreQuery
Sourcepub fn builder() -> ExploreBuilder
pub fn builder() -> ExploreBuilder
Create a new ExploreBuilder for the GraphQL ExploreQuery.
This is the same as ExploreBuilder::new().
§Example
use weaviate_community::collections::query::ExploreQuery;
let query = ExploreQuery::builder();Trait Implementations§
Source§impl Debug for ExploreQuery
impl Debug for ExploreQuery
Source§impl<'de> Deserialize<'de> for ExploreQuery
impl<'de> Deserialize<'de> for ExploreQuery
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
Auto Trait Implementations§
impl Freeze for ExploreQuery
impl RefUnwindSafe for ExploreQuery
impl Send for ExploreQuery
impl Sync for ExploreQuery
impl Unpin for ExploreQuery
impl UnwindSafe for ExploreQuery
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