pub struct AssistantVersionsSearchRequest {
pub metadata: Option<Value>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}Expand description
AssistantVersionsSearchRequest : Payload for listing assistant versions.
Fields§
§metadata: Option<Value>Metadata to filter versions by. Exact match filter for each KV pair.
limit: Option<i32>The maximum number of versions to return.
offset: Option<i32>The number of versions to skip.
Implementations§
Source§impl AssistantVersionsSearchRequest
impl AssistantVersionsSearchRequest
Sourcepub fn new() -> AssistantVersionsSearchRequest
pub fn new() -> AssistantVersionsSearchRequest
Payload for listing assistant versions.
Trait Implementations§
Source§impl Clone for AssistantVersionsSearchRequest
impl Clone for AssistantVersionsSearchRequest
Source§fn clone(&self) -> AssistantVersionsSearchRequest
fn clone(&self) -> AssistantVersionsSearchRequest
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 Default for AssistantVersionsSearchRequest
impl Default for AssistantVersionsSearchRequest
Source§fn default() -> AssistantVersionsSearchRequest
fn default() -> AssistantVersionsSearchRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssistantVersionsSearchRequest
impl<'de> Deserialize<'de> for AssistantVersionsSearchRequest
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 AssistantVersionsSearchRequest
impl PartialEq for AssistantVersionsSearchRequest
Source§fn eq(&self, other: &AssistantVersionsSearchRequest) -> bool
fn eq(&self, other: &AssistantVersionsSearchRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AssistantVersionsSearchRequest
Auto Trait Implementations§
impl Freeze for AssistantVersionsSearchRequest
impl RefUnwindSafe for AssistantVersionsSearchRequest
impl Send for AssistantVersionsSearchRequest
impl Sync for AssistantVersionsSearchRequest
impl Unpin for AssistantVersionsSearchRequest
impl UnwindSafe for AssistantVersionsSearchRequest
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