Struct slack_blocks::blocks::file::build::FileBuilder[][src]

pub struct FileBuilder<'a, ExternalId> { /* fields omitted */ }
Expand description

Build an File block

Allows you to construct safely, with compile-time checks on required setter methods.

Required Methods

FileBuilder::build() is only available if these methods have been called:

  • external_id
  • source

Example

use slack_blocks::{blocks::File, elems::Image, text::ToSlackPlaintext};

let my_file_id: String = {
  // use Slack Web API: files.remote.add to upload a file
};

let block = File::builder().external_id(my_file_id).build();

Implementations

Create a new FileBuilder

Set external_id (Required)

The external unique ID for a remote file 🔗.

Set block_id (Optional)

A string acting as a unique identifier for a block.

You can use this block_id when you receive an interaction payload to identify the source of the action 🔗.

If not specified, a block_id will be generated.

Maximum length for this field is 255 characters.

All done building, now give me a darn actions block!

no method name 'build' found for struct 'FileBuilder<...>'? Make sure all required setter methods have been called. See docs for FileBuilder.

use slack_blocks::blocks::File;

let foo = File::builder().build(); // Won't compile!
use slack_blocks::{blocks::File,
                   compose::text::ToSlackPlaintext,
                   elems::Image};

let my_file_id: String = {
  // use Slack Web API: files.remote.add to upload a file
};

let block = File::builder().external_id(my_file_id).build();

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

This is supported on crate feature blox only.

Identity function

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.