pub struct AuditLogCheckpointPermissionCreatedData {
pub project_id: Option<String>,
pub fine_tuned_model_checkpoint: Option<String>,
}
Expand description
The payload used to create the checkpoint permission.
Fields§
§project_id: Option<String>
The ID of the project that the checkpoint permission was created for.
fine_tuned_model_checkpoint: Option<String>
The ID of the fine-tuned model checkpoint.
Implementations§
Source§impl AuditLogCheckpointPermissionCreatedData
impl AuditLogCheckpointPermissionCreatedData
Sourcepub fn builder() -> AuditLogCheckpointPermissionCreatedDataBuilder<((), ())>
pub fn builder() -> AuditLogCheckpointPermissionCreatedDataBuilder<((), ())>
Create a builder for building AuditLogCheckpointPermissionCreatedData
.
On the builder, call .project_id(...)
(optional), .fine_tuned_model_checkpoint(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AuditLogCheckpointPermissionCreatedData
.
Trait Implementations§
Source§impl Clone for AuditLogCheckpointPermissionCreatedData
impl Clone for AuditLogCheckpointPermissionCreatedData
Source§fn clone(&self) -> AuditLogCheckpointPermissionCreatedData
fn clone(&self) -> AuditLogCheckpointPermissionCreatedData
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 AuditLogCheckpointPermissionCreatedData
impl Default for AuditLogCheckpointPermissionCreatedData
Source§fn default() -> AuditLogCheckpointPermissionCreatedData
fn default() -> AuditLogCheckpointPermissionCreatedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogCheckpointPermissionCreatedData
impl<'de> Deserialize<'de> for AuditLogCheckpointPermissionCreatedData
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 AuditLogCheckpointPermissionCreatedData
impl PartialEq for AuditLogCheckpointPermissionCreatedData
Source§fn eq(&self, other: &AuditLogCheckpointPermissionCreatedData) -> bool
fn eq(&self, other: &AuditLogCheckpointPermissionCreatedData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuditLogCheckpointPermissionCreatedData
Auto Trait Implementations§
impl Freeze for AuditLogCheckpointPermissionCreatedData
impl RefUnwindSafe for AuditLogCheckpointPermissionCreatedData
impl Send for AuditLogCheckpointPermissionCreatedData
impl Sync for AuditLogCheckpointPermissionCreatedData
impl Unpin for AuditLogCheckpointPermissionCreatedData
impl UnwindSafe for AuditLogCheckpointPermissionCreatedData
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