pub struct AssistantCountRequest {
pub metadata: Option<Value>,
pub graph_id: Option<String>,
pub name: Option<String>,
}Expand description
AssistantCountRequest : Payload for counting assistants.
Fields§
§metadata: Option<Value>Metadata to filter by. Exact match filter for each KV pair.
graph_id: Option<String>The ID of the graph to filter by. The graph ID is normally set in your langgraph.json configuration.
name: Option<String>Name of the assistant to filter by. The filtering logic will match (case insensitive) assistants where ‘name’ is a substring of the assistant name.
Implementations§
Source§impl AssistantCountRequest
impl AssistantCountRequest
Sourcepub fn new() -> AssistantCountRequest
pub fn new() -> AssistantCountRequest
Payload for counting assistants.
Trait Implementations§
Source§impl Clone for AssistantCountRequest
impl Clone for AssistantCountRequest
Source§fn clone(&self) -> AssistantCountRequest
fn clone(&self) -> AssistantCountRequest
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssistantCountRequest
impl Debug for AssistantCountRequest
Source§impl Default for AssistantCountRequest
impl Default for AssistantCountRequest
Source§fn default() -> AssistantCountRequest
fn default() -> AssistantCountRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssistantCountRequest
impl<'de> Deserialize<'de> for AssistantCountRequest
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 AssistantCountRequest
impl PartialEq for AssistantCountRequest
Source§impl Serialize for AssistantCountRequest
impl Serialize for AssistantCountRequest
impl StructuralPartialEq for AssistantCountRequest
Auto Trait Implementations§
impl Freeze for AssistantCountRequest
impl RefUnwindSafe for AssistantCountRequest
impl Send for AssistantCountRequest
impl Sync for AssistantCountRequest
impl Unpin for AssistantCountRequest
impl UnwindSafe for AssistantCountRequest
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)