pub struct DeployedAgent {
pub id: String,
pub tenant_id: String,
pub name: String,
pub description: String,
pub wauldo_toml: String,
pub agents_md: Option<String>,
pub mcp_json: Option<String>,
pub model_provider: String,
pub model_name: String,
pub preset: Option<String>,
pub created_at: u64,
pub updated_at: u64,
}Fields§
§id: String§tenant_id: String§name: String§description: String§wauldo_toml: String§agents_md: Option<String>§mcp_json: Option<String>§model_provider: String§model_name: String§preset: Option<String>§created_at: u64§updated_at: u64Trait Implementations§
Source§impl Clone for DeployedAgent
impl Clone for DeployedAgent
Source§fn clone(&self) -> DeployedAgent
fn clone(&self) -> DeployedAgent
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 Debug for DeployedAgent
impl Debug for DeployedAgent
Source§impl<'de> Deserialize<'de> for DeployedAgent
impl<'de> Deserialize<'de> for DeployedAgent
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
Auto Trait Implementations§
impl Freeze for DeployedAgent
impl RefUnwindSafe for DeployedAgent
impl Send for DeployedAgent
impl Sync for DeployedAgent
impl Unpin for DeployedAgent
impl UnsafeUnpin for DeployedAgent
impl UnwindSafe for DeployedAgent
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