pub struct FineTuningCheckpointPermission {
pub id: String,
pub created_at: i64,
pub project_id: String,
pub object: String,
}
Expand description
The checkpoint.permission
object represents a permission for a fine-tuned
model checkpoint.
Fields§
§id: String
The permission identifier, which can be referenced in the API endpoints.
created_at: i64
The Unix timestamp (in seconds) for when the permission was created.
project_id: String
The project identifier that the permission is for.
object: String
The object type, which is always “checkpoint.permission”.
Trait Implementations§
Source§impl Clone for FineTuningCheckpointPermission
impl Clone for FineTuningCheckpointPermission
Source§fn clone(&self) -> FineTuningCheckpointPermission
fn clone(&self) -> FineTuningCheckpointPermission
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 FineTuningCheckpointPermission
impl Default for FineTuningCheckpointPermission
Source§fn default() -> FineTuningCheckpointPermission
fn default() -> FineTuningCheckpointPermission
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FineTuningCheckpointPermission
impl RefUnwindSafe for FineTuningCheckpointPermission
impl Send for FineTuningCheckpointPermission
impl Sync for FineTuningCheckpointPermission
impl Unpin for FineTuningCheckpointPermission
impl UnwindSafe for FineTuningCheckpointPermission
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