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