pub struct DeleteFineTuningCheckpointPermissionResponse {
    pub id: String,
    pub deleted: bool,
}Fields§
§id: StringThe ID of the fine-tuned model checkpoint permission that was deleted.
deleted: boolWhether the fine-tuned model checkpoint permission was successfully deleted.
Implementations§
Source§impl DeleteFineTuningCheckpointPermissionResponse
 
impl DeleteFineTuningCheckpointPermissionResponse
Sourcepub fn builder() -> DeleteFineTuningCheckpointPermissionResponseBuilder<((), ())>
 
pub fn builder() -> DeleteFineTuningCheckpointPermissionResponseBuilder<((), ())>
Create a builder for building DeleteFineTuningCheckpointPermissionResponse.
On the builder, call .id(...), .deleted(...) to set the values of the fields.
Finally, call .build() to create the instance of DeleteFineTuningCheckpointPermissionResponse.
Trait Implementations§
Source§impl Clone for DeleteFineTuningCheckpointPermissionResponse
 
impl Clone for DeleteFineTuningCheckpointPermissionResponse
Source§fn clone(&self) -> DeleteFineTuningCheckpointPermissionResponse
 
fn clone(&self) -> DeleteFineTuningCheckpointPermissionResponse
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<'de> Deserialize<'de> for DeleteFineTuningCheckpointPermissionResponse
 
impl<'de> Deserialize<'de> for DeleteFineTuningCheckpointPermissionResponse
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 DeleteFineTuningCheckpointPermissionResponse
 
impl PartialEq for DeleteFineTuningCheckpointPermissionResponse
Source§fn eq(&self, other: &DeleteFineTuningCheckpointPermissionResponse) -> bool
 
fn eq(&self, other: &DeleteFineTuningCheckpointPermissionResponse) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteFineTuningCheckpointPermissionResponse
Auto Trait Implementations§
impl Freeze for DeleteFineTuningCheckpointPermissionResponse
impl RefUnwindSafe for DeleteFineTuningCheckpointPermissionResponse
impl Send for DeleteFineTuningCheckpointPermissionResponse
impl Sync for DeleteFineTuningCheckpointPermissionResponse
impl Unpin for DeleteFineTuningCheckpointPermissionResponse
impl UnwindSafe for DeleteFineTuningCheckpointPermissionResponse
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