pub struct DeleteEvalRunResponse {
pub object: Option<String>,
pub deleted: Option<bool>,
pub run_id: Option<String>,
}
Fields§
§object: Option<String>
§deleted: Option<bool>
§run_id: Option<String>
Implementations§
Source§impl DeleteEvalRunResponse
impl DeleteEvalRunResponse
Sourcepub fn builder() -> DeleteEvalRunResponseBuilder<((), (), ())>
pub fn builder() -> DeleteEvalRunResponseBuilder<((), (), ())>
Create a builder for building DeleteEvalRunResponse
.
On the builder, call .object(...)
(optional), .deleted(...)
(optional), .run_id(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of DeleteEvalRunResponse
.
Trait Implementations§
Source§impl Clone for DeleteEvalRunResponse
impl Clone for DeleteEvalRunResponse
Source§fn clone(&self) -> DeleteEvalRunResponse
fn clone(&self) -> DeleteEvalRunResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteEvalRunResponse
impl Debug for DeleteEvalRunResponse
Source§impl Default for DeleteEvalRunResponse
impl Default for DeleteEvalRunResponse
Source§fn default() -> DeleteEvalRunResponse
fn default() -> DeleteEvalRunResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteEvalRunResponse
impl<'de> Deserialize<'de> for DeleteEvalRunResponse
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 DeleteEvalRunResponse
impl PartialEq for DeleteEvalRunResponse
Source§impl Serialize for DeleteEvalRunResponse
impl Serialize for DeleteEvalRunResponse
impl StructuralPartialEq for DeleteEvalRunResponse
Auto Trait Implementations§
impl Freeze for DeleteEvalRunResponse
impl RefUnwindSafe for DeleteEvalRunResponse
impl Send for DeleteEvalRunResponse
impl Sync for DeleteEvalRunResponse
impl Unpin for DeleteEvalRunResponse
impl UnwindSafe for DeleteEvalRunResponse
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