Struct yttrium_key_base::environment::Environment[][src]

pub struct Environment<'a, Manager: DatabaseManager<DB>, DB: Database> {
    pub embed: Option<CreateEmbed>,
    pub database_manager: Manager,
    pub guild_id: GuildId,
    pub target: String,
    pub attachments: Vec<String>,
    pub event_info: EventType,
    pub discord_context: &'a Context,
    pub delete_option: Option<Duration>,
    pub reactions_to_add: Vec<ReactionType>,
    // some fields omitted
}

The environment shared between all called keys, containing the global state

Fields

embed: Option<CreateEmbed>

The embed to return

database_manager: Manager

The database manager used for accessing databases

guild_id: GuildId

The ID of the guild the message was sent in

target: String

The target channel ID, defaults to the channel in which the bot was triggered

attachments: Vec<String>

URLs of attachments to send

event_info: EventType

The event

discord_context: &'a Context

Shared serenity context used for accessing discord

delete_option: Option<Duration>

Used for deleting the response message

reactions_to_add: Vec<ReactionType>

Used for adding reactions to the response message

Implementations

impl<'a, Manager: DatabaseManager<DB>, DB: Database> Environment<'a, Manager, DB>[src]

pub fn new(
    event_info: EventType,
    guild_id: GuildId,
    context: &'a Context,
    db_manager: Manager
) -> Self
[src]

Trait Implementations

impl<'a, Manager: DatabaseManager<DB>, DB: Database> Debug for Environment<'a, Manager, DB>[src]

impl<'a, Manager: DatabaseManager<DB>, DB: Database> Send for Environment<'a, Manager, DB>[src]

impl<'a, Manager: DatabaseManager<DB>, DB: Database> Sync for Environment<'a, Manager, DB>[src]

Auto Trait Implementations

impl<'a, Manager, DB> !RefUnwindSafe for Environment<'a, Manager, DB>[src]

impl<'a, Manager, DB> Unpin for Environment<'a, Manager, DB> where
    DB: Unpin,
    Manager: Unpin
[src]

impl<'a, Manager, DB> !UnwindSafe for Environment<'a, Manager, DB>[src]

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> Same<T> for T

type Output = T

Should always be Self

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>, 

impl<T> WithSubscriber for T[src]