pub struct CreateModelMetaResponse {
pub status: String,
pub model_id: String,
}Fields§
§status: String§model_id: StringImplementations§
Source§impl CreateModelMetaResponse
impl CreateModelMetaResponse
pub fn new(status: String, model_id: String) -> CreateModelMetaResponse
Trait Implementations§
Source§impl Clone for CreateModelMetaResponse
impl Clone for CreateModelMetaResponse
Source§fn clone(&self) -> CreateModelMetaResponse
fn clone(&self) -> CreateModelMetaResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreateModelMetaResponse
impl Debug for CreateModelMetaResponse
Source§impl Default for CreateModelMetaResponse
impl Default for CreateModelMetaResponse
Source§fn default() -> CreateModelMetaResponse
fn default() -> CreateModelMetaResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateModelMetaResponse
impl<'de> Deserialize<'de> for CreateModelMetaResponse
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 CreateModelMetaResponse
impl PartialEq for CreateModelMetaResponse
Source§fn eq(&self, other: &CreateModelMetaResponse) -> bool
fn eq(&self, other: &CreateModelMetaResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CreateModelMetaResponse
impl Serialize for CreateModelMetaResponse
impl StructuralPartialEq for CreateModelMetaResponse
Auto Trait Implementations§
impl Freeze for CreateModelMetaResponse
impl RefUnwindSafe for CreateModelMetaResponse
impl Send for CreateModelMetaResponse
impl Sync for CreateModelMetaResponse
impl Unpin for CreateModelMetaResponse
impl UnsafeUnpin for CreateModelMetaResponse
impl UnwindSafe for CreateModelMetaResponse
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