pub struct ProjectInterfaces {
pub telegram: Option<ProjectTelegramConfig>,
}Expand description
#132 PR-1: project-scoped interface container. One level up from
AgentInterfaces, same open-shape rationale — today’s only adapter
is telegram, future discord: / imessage: slot in as
strictly-additive YAML edits.
Fields§
§telegram: Option<ProjectTelegramConfig>Project-scoped Telegram config: the manager bot that spawns
per-agent children + default profile-picture rendering. Per-
agent telegram config (under Agent.interfaces.telegram) is
orthogonal — agents still declare their own bot_token_env /
chat_ids_env slots; the managed-bots flow writes child tokens
into those slots untouched.
Trait Implementations§
Source§impl Clone for ProjectInterfaces
impl Clone for ProjectInterfaces
Source§fn clone(&self) -> ProjectInterfaces
fn clone(&self) -> ProjectInterfaces
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 ProjectInterfaces
impl Debug for ProjectInterfaces
Source§impl Default for ProjectInterfaces
impl Default for ProjectInterfaces
Source§fn default() -> ProjectInterfaces
fn default() -> ProjectInterfaces
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectInterfaces
impl<'de> Deserialize<'de> for ProjectInterfaces
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 JsonSchema for ProjectInterfaces
impl JsonSchema for ProjectInterfaces
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ProjectInterfaces
impl RefUnwindSafe for ProjectInterfaces
impl Send for ProjectInterfaces
impl Sync for ProjectInterfaces
impl Unpin for ProjectInterfaces
impl UnsafeUnpin for ProjectInterfaces
impl UnwindSafe for ProjectInterfaces
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