pub struct ListFineTuningEventsQuery {
pub after: Option<String>,
pub limit: Option<u32>,
pub order: Option<ListFineTuningEventsOrder>,
}Available on crate feature
finetuning-types only.Expand description
Query parameters for listing fine-tuning events.
Fields§
§after: Option<String>Identifier for the last event from the previous pagination request.
limit: Option<u32>Number of events to retrieve.
order: Option<ListFineTuningEventsOrder>Sort order for events by timestamp. Use asc for ascending order or desc for descending
order. Defaults to asc.
Trait Implementations§
Source§impl Clone for ListFineTuningEventsQuery
impl Clone for ListFineTuningEventsQuery
Source§fn clone(&self) -> ListFineTuningEventsQuery
fn clone(&self) -> ListFineTuningEventsQuery
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 ListFineTuningEventsQuery
impl Debug for ListFineTuningEventsQuery
Source§impl Default for ListFineTuningEventsQuery
impl Default for ListFineTuningEventsQuery
Source§fn default() -> ListFineTuningEventsQuery
fn default() -> ListFineTuningEventsQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListFineTuningEventsQuery
Auto Trait Implementations§
impl Freeze for ListFineTuningEventsQuery
impl RefUnwindSafe for ListFineTuningEventsQuery
impl Send for ListFineTuningEventsQuery
impl Sync for ListFineTuningEventsQuery
impl Unpin for ListFineTuningEventsQuery
impl UnsafeUnpin for ListFineTuningEventsQuery
impl UnwindSafe for ListFineTuningEventsQuery
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