pub struct ListFineTuningJobCheckpointsParams {
pub fine_tuning_job_id: String,
pub after: Option<String>,
pub limit: Option<i64>,
}
Fields§
§fine_tuning_job_id: String
The ID of the fine-tuning job to get checkpoints for.
after: Option<String>
Identifier for the last checkpoint ID from the previous pagination request.
limit: Option<i64>
Number of checkpoints to retrieve.
Implementations§
Source§impl ListFineTuningJobCheckpointsParams
impl ListFineTuningJobCheckpointsParams
Sourcepub fn builder() -> ListFineTuningJobCheckpointsParamsBuilder<((), (), ())>
pub fn builder() -> ListFineTuningJobCheckpointsParamsBuilder<((), (), ())>
Create a builder for building ListFineTuningJobCheckpointsParams
.
On the builder, call .fine_tuning_job_id(...)
, .after(...)
(optional), .limit(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ListFineTuningJobCheckpointsParams
.
Trait Implementations§
Source§impl Clone for ListFineTuningJobCheckpointsParams
impl Clone for ListFineTuningJobCheckpointsParams
Source§fn clone(&self) -> ListFineTuningJobCheckpointsParams
fn clone(&self) -> ListFineTuningJobCheckpointsParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for ListFineTuningJobCheckpointsParams
impl<'de> Deserialize<'de> for ListFineTuningJobCheckpointsParams
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 ListFineTuningJobCheckpointsParams
impl PartialEq for ListFineTuningJobCheckpointsParams
Source§fn eq(&self, other: &ListFineTuningJobCheckpointsParams) -> bool
fn eq(&self, other: &ListFineTuningJobCheckpointsParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListFineTuningJobCheckpointsParams
Auto Trait Implementations§
impl Freeze for ListFineTuningJobCheckpointsParams
impl RefUnwindSafe for ListFineTuningJobCheckpointsParams
impl Send for ListFineTuningJobCheckpointsParams
impl Sync for ListFineTuningJobCheckpointsParams
impl Unpin for ListFineTuningJobCheckpointsParams
impl UnwindSafe for ListFineTuningJobCheckpointsParams
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