pub struct AgentManifest {
pub api_version: String,
pub kind: String,
pub metadata: ManifestMetadata,
pub spec: ManifestSpec,
}Expand description
Top-level declarative agent manifest (K8s-style).
Fields§
§api_version: StringMust be "mur.run/v1".
kind: StringMust be "AgentManifest".
metadata: ManifestMetadata§spec: ManifestSpecImplementations§
Trait Implementations§
Source§impl Clone for AgentManifest
impl Clone for AgentManifest
Source§fn clone(&self) -> AgentManifest
fn clone(&self) -> AgentManifest
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 AgentManifest
impl Debug for AgentManifest
Source§impl<'de> Deserialize<'de> for AgentManifest
impl<'de> Deserialize<'de> for AgentManifest
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 AgentManifest
impl RefUnwindSafe for AgentManifest
impl Send for AgentManifest
impl Sync for AgentManifest
impl Unpin for AgentManifest
impl UnsafeUnpin for AgentManifest
impl UnwindSafe for AgentManifest
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