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

pub struct Environment<'a> {
    pub embed: Option<Embed>,
    pub database_manager: Box<dyn DatabaseManager>,
    pub guild_id: GuildId,
    pub target: String,
    pub attachments: Vec<String>,
    pub event_info: EventType,
    pub discord_context: &'a mut Context,
    pub delete_option: Option<Duration>,
    pub reactions_to_add: Vec<String>,
}

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

Fields

embed: Option<Embed>

Unfinished

database_manager: Box<dyn DatabaseManager>

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 mut Context

Shared serenity context used for accessing discord

delete_option: Option<Duration>

Used for deleting the response message

reactions_to_add: Vec<String>

Used for adding reactions to the response message

Implementations

impl<'a> Environment<'a>[src]

pub fn new(
    event_info: EventType,
    guild_id: GuildId,
    context: &'a mut Context,
    db_manager: Box<dyn DatabaseManager>
) -> Self
[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Environment<'a>

impl<'a> !Send for Environment<'a>

impl<'a> !Sync for Environment<'a>

impl<'a> Unpin for Environment<'a>

impl<'a> !UnwindSafe for Environment<'a>

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]