pub struct CronSearch {
pub assistant_id: Option<Uuid>,
pub thread_id: Option<Uuid>,
pub limit: Option<i32>,
pub offset: Option<i32>,
pub sort_by: Option<SortBy>,
pub sort_order: Option<SortOrder>,
pub select: Option<Vec<Select>>,
}Expand description
CronSearch : Payload for listing crons
Fields§
§assistant_id: Option<Uuid>The assistant ID or graph name to filter by using exact match.
thread_id: Option<Uuid>The thread ID to search for.
limit: Option<i32>The maximum number of results to return.
offset: Option<i32>The number of results to skip.
sort_by: Option<SortBy>The field to sort by.
sort_order: Option<SortOrder>The order to sort by.
select: Option<Vec<Select>>Specify which fields to return. If not provided, all fields are returned.
Implementations§
Source§impl CronSearch
impl CronSearch
Sourcepub fn new() -> CronSearch
pub fn new() -> CronSearch
Payload for listing crons
Trait Implementations§
Source§impl Clone for CronSearch
impl Clone for CronSearch
Source§fn clone(&self) -> CronSearch
fn clone(&self) -> CronSearch
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 CronSearch
impl Debug for CronSearch
Source§impl Default for CronSearch
impl Default for CronSearch
Source§fn default() -> CronSearch
fn default() -> CronSearch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CronSearch
impl<'de> Deserialize<'de> for CronSearch
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 CronSearch
impl PartialEq for CronSearch
Source§impl Serialize for CronSearch
impl Serialize for CronSearch
impl StructuralPartialEq for CronSearch
Auto Trait Implementations§
impl Freeze for CronSearch
impl RefUnwindSafe for CronSearch
impl Send for CronSearch
impl Sync for CronSearch
impl Unpin for CronSearch
impl UnwindSafe for CronSearch
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