pub struct AppManifest {Show 13 fields
pub app_id: String,
pub name: String,
pub version: String,
pub description: String,
pub app_type: AppType,
pub permissions: Option<PermissionsContract>,
pub data_contract: Vec<EntityContract>,
pub actions: Vec<ActionDefinition>,
pub config_schema: Option<Value>,
pub user_auth: Option<Value>,
pub webhooks: Vec<String>,
pub instructions: Option<String>,
pub trigger: Option<TriggerConfig>,
}Fields§
§app_id: String§name: String§version: String§description: String§app_type: AppType§permissions: Option<PermissionsContract>§data_contract: Vec<EntityContract>§actions: Vec<ActionDefinition>§config_schema: Option<Value>§user_auth: Option<Value>§webhooks: Vec<String>§instructions: Option<String>Free-form usage instructions surfaced to AI via list_integrations tool
trigger: Option<TriggerConfig>Trigger: auto-invoke this agent on entity events
Trait Implementations§
Source§impl Clone for AppManifest
impl Clone for AppManifest
Source§fn clone(&self) -> AppManifest
fn clone(&self) -> AppManifest
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 AppManifest
impl Debug for AppManifest
Source§impl<'de> Deserialize<'de> for AppManifest
impl<'de> Deserialize<'de> for AppManifest
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 AppManifest
impl RefUnwindSafe for AppManifest
impl Send for AppManifest
impl Sync for AppManifest
impl Unpin for AppManifest
impl UnsafeUnpin for AppManifest
impl UnwindSafe for AppManifest
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