pub struct AgentInterfaces {
pub telegram: Option<TelegramConfig>,
}Expand description
Container for per-manager interface adapters. Open shape so adding
discord: / imessage: later is a strictly-additive YAML edit.
Fields§
§telegram: Option<TelegramConfig>1:1 Telegram bot for this manager. When set, teamctl up
spawns a team-bot tmux session scoped to this manager so the
human DMs the bot directly (no /dm role text required).
Configured by teamctl bot setup.
Trait Implementations§
Source§impl Clone for AgentInterfaces
impl Clone for AgentInterfaces
Source§fn clone(&self) -> AgentInterfaces
fn clone(&self) -> AgentInterfaces
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 AgentInterfaces
impl Debug for AgentInterfaces
Source§impl Default for AgentInterfaces
impl Default for AgentInterfaces
Source§fn default() -> AgentInterfaces
fn default() -> AgentInterfaces
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentInterfaces
impl<'de> Deserialize<'de> for AgentInterfaces
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 AgentInterfaces
impl RefUnwindSafe for AgentInterfaces
impl Send for AgentInterfaces
impl Sync for AgentInterfaces
impl Unpin for AgentInterfaces
impl UnsafeUnpin for AgentInterfaces
impl UnwindSafe for AgentInterfaces
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