Struct urbit_chatbot_framework::Chatbot[][src]

pub struct Chatbot { /* fields omitted */ }

This struct represents a chatbot that is connected to a given ship, is watching/posting to a specific chat_ship/chat_name and is using the function respond_to_message to process any messages which are posted in said chat.

Implementations

impl Chatbot[src]

pub fn new(
    respond_to_message: fn(_: AuthoredMessage) -> Option<Message>,
    ship: ShipInterface,
    chat_ship: &str,
    chat_name: &str
) -> Self
[src]

Create a new Chatbot with a manually provided ShipInterface

pub fn new_with_local_config(
    respond_to_message: fn(_: AuthoredMessage) -> Option<Message>,
    chat_ship: &str,
    chat_name: &str
) -> Self
[src]

Create a new Chatbot with a ShipInterface derived automatically from a local config file. If the config file does not exist, the Chatbot will create the config file, exit, and prompt the user to fill it out.

pub fn run(&self) -> Option<()>[src]

Run the Chatbot

Auto Trait Implementations

impl !RefUnwindSafe for Chatbot

impl Send for Chatbot

impl Sync for Chatbot

impl Unpin for Chatbot

impl !UnwindSafe for Chatbot

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,