pub struct FineTuningCheckpointPermission {
pub created_at: i32,
pub id: String,
pub object: String,
pub project_id: String,
}
Fields§
§created_at: i32
The Unix timestamp (in seconds) for when the permission was created.
id: String
The permission identifier, which can be referenced in the API endpoints.
object: String
The object type, which is always "checkpoint.permission".
project_id: String
The project identifier that the permission is for.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FineTuningCheckpointPermission
impl<'de> Deserialize<'de> for FineTuningCheckpointPermission
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
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