pub struct RecallRawQueryRequest {
pub header: Option<CMPHeader>,
pub session_id: Option<String>,
pub query: Option<String>,
pub temporal: Option<TemporalRange>,
pub limit: u32,
pub include_private_scratch: bool,
pub include_sealed: bool,
pub secrecy_levels: Option<Vec<SecrecyLevel>>,
}Expand description
recall.raw_query request — explicit retrieval from the raw journal.
Fields§
§header: Option<CMPHeader>§session_id: Option<String>§query: Option<String>§temporal: Option<TemporalRange>§limit: u32§include_private_scratch: bool§include_sealed: bool§secrecy_levels: Option<Vec<SecrecyLevel>>Trait Implementations§
Source§impl Clone for RecallRawQueryRequest
impl Clone for RecallRawQueryRequest
Source§fn clone(&self) -> RecallRawQueryRequest
fn clone(&self) -> RecallRawQueryRequest
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 moreSource§impl Debug for RecallRawQueryRequest
impl Debug for RecallRawQueryRequest
Source§impl<'de> Deserialize<'de> for RecallRawQueryRequest
impl<'de> Deserialize<'de> for RecallRawQueryRequest
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 RecallRawQueryRequest
impl RefUnwindSafe for RecallRawQueryRequest
impl Send for RecallRawQueryRequest
impl Sync for RecallRawQueryRequest
impl Unpin for RecallRawQueryRequest
impl UnsafeUnpin for RecallRawQueryRequest
impl UnwindSafe for RecallRawQueryRequest
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