pub struct ModelEndpointsData {
pub id: String,
pub name: String,
pub created: Option<f64>,
pub description: String,
pub architecture: ModelEndpointsArchitecture,
pub endpoints: Vec<ModelEndpoint>,
}Expand description
Body of ModelEndpointsResponse.
Fields§
§id: StringModel id.
name: StringDisplay name.
created: Option<f64>Unix-seconds creation timestamp.
description: StringLong description.
architecture: ModelEndpointsArchitectureArchitecture summary.
endpoints: Vec<ModelEndpoint>Endpoint rows.
Trait Implementations§
Source§impl Clone for ModelEndpointsData
impl Clone for ModelEndpointsData
Source§fn clone(&self) -> ModelEndpointsData
fn clone(&self) -> ModelEndpointsData
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 ModelEndpointsData
impl Debug for ModelEndpointsData
Source§impl Default for ModelEndpointsData
impl Default for ModelEndpointsData
Source§fn default() -> ModelEndpointsData
fn default() -> ModelEndpointsData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelEndpointsData
impl<'de> Deserialize<'de> for ModelEndpointsData
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 ModelEndpointsData
impl PartialEq for ModelEndpointsData
Source§impl Serialize for ModelEndpointsData
impl Serialize for ModelEndpointsData
impl StructuralPartialEq for ModelEndpointsData
Auto Trait Implementations§
impl Freeze for ModelEndpointsData
impl RefUnwindSafe for ModelEndpointsData
impl Send for ModelEndpointsData
impl Sync for ModelEndpointsData
impl Unpin for ModelEndpointsData
impl UnsafeUnpin for ModelEndpointsData
impl UnwindSafe for ModelEndpointsData
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