pub struct KnowledgeListQuery {
pub scope: Option<MemoryScope>,
pub kind: Option<KnowledgeKind>,
pub tag: Option<String>,
pub status: Option<KnowledgeStatus>,
pub include_archived: bool,
pub limit: usize,
}Fields§
§scope: Option<MemoryScope>§kind: Option<KnowledgeKind>§tag: Option<String>§status: Option<KnowledgeStatus>§include_archived: bool§limit: usizeTrait Implementations§
Source§impl Clone for KnowledgeListQuery
impl Clone for KnowledgeListQuery
Source§fn clone(&self) -> KnowledgeListQuery
fn clone(&self) -> KnowledgeListQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KnowledgeListQuery
impl Debug for KnowledgeListQuery
Source§impl<'de> Deserialize<'de> for KnowledgeListQuery
impl<'de> Deserialize<'de> for KnowledgeListQuery
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
Source§impl PartialEq for KnowledgeListQuery
impl PartialEq for KnowledgeListQuery
Source§fn eq(&self, other: &KnowledgeListQuery) -> bool
fn eq(&self, other: &KnowledgeListQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KnowledgeListQuery
impl Serialize for KnowledgeListQuery
impl StructuralPartialEq for KnowledgeListQuery
Auto Trait Implementations§
impl Freeze for KnowledgeListQuery
impl RefUnwindSafe for KnowledgeListQuery
impl Send for KnowledgeListQuery
impl Sync for KnowledgeListQuery
impl Unpin for KnowledgeListQuery
impl UnsafeUnpin for KnowledgeListQuery
impl UnwindSafe for KnowledgeListQuery
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