pub struct Template {
pub details: Option<AnyscaleModelToolsInner>,
pub provider_details: Option<CreateToolTemplateDtoProviderDetails>,
pub metadata: Option<ToolTemplateMetadata>,
pub visibility: Option<VisibilityTrue>,
pub type: TypeTrue,
pub name: Option<String>,
pub provider: Option<ProviderTrue>,
pub id: String,
pub org_id: String,
pub created_at: String,
pub updated_at: String,
}
Fields§
§details: Option<AnyscaleModelToolsInner>
§provider_details: Option<CreateToolTemplateDtoProviderDetails>
§metadata: Option<ToolTemplateMetadata>
§visibility: Option<VisibilityTrue>
§type: TypeTrue
§name: Option<String>
The name of the template. This is just for your own reference.
provider: Option<ProviderTrue>
§id: String
The unique identifier for the template.
org_id: String
The unique identifier for the organization that this template belongs to.
created_at: String
The ISO 8601 date-time string of when the template was created.
updated_at: String
The ISO 8601 date-time string of when the template was last updated.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Template
impl<'de> Deserialize<'de> for Template
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
impl StructuralPartialEq for Template
Auto Trait Implementations§
impl Freeze for Template
impl RefUnwindSafe for Template
impl Send for Template
impl Sync for Template
impl Unpin for Template
impl UnwindSafe for Template
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