[][src]Struct azure_functions::bindings::BlobTrigger

pub struct BlobTrigger {
    pub blob: Blob,
    pub path: String,
    pub uri: String,
    pub properties: Properties,
    pub metadata: HashMap<String, String>,
}

Represents an Azure Storage blob trigger binding.

Examples

A function that runs when a blob is created in the test container:

use azure_functions::bindings::BlobTrigger;
use azure_functions::func;

#[func]
#[binding(name = "trigger", path = "test/{name}")]
pub fn print_blob(trigger: &BlobTrigger) {
    info!("Blob (as string): {:?}", trigger.blob.as_str());
}

Fields

blob: Blob

The blob that triggered the function.

path: String

The path of the blob.

uri: String

The URI of the blob.

properties: Properties

The properties of the blob.

metadata: HashMap<String, String>

The metadata of the blob.

Trait Implementations

impl Into<TypedData> for BlobTrigger[src]

impl From<TypedData> for BlobTrigger[src]

impl Debug for BlobTrigger[src]

Auto Trait Implementations

impl Send for BlobTrigger

impl Sync for BlobTrigger

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]

impl<T> Erased for T