[][src]Struct azure_functions_shared::Context

pub struct Context<'a> { /* fields omitted */ }

Represents context about an Azure Function invocation.

Methods

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

pub fn new(invocation_id: &'a str, function_id: &'a str, name: &'a str) -> Self[src]

Creates a new function invocation context.

pub fn invocation_id(&self) -> &str[src]

Gets the invocation identifier for the current Azure Function.

pub fn function_id(&self) -> &str[src]

Gets the function identifier for the current Azure Function.

pub fn function_name(&self) -> &str[src]

Gets the name of the current Azure Function.

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

Gets the directory for the current Azure Function.

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

Gets the directory for the current Azure Function Application.

Trait Implementations

impl<'a> Debug for Context<'a>[src]

Auto Trait Implementations

impl<'a> Send for Context<'a>

impl<'a> Sync for Context<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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