Skip to main content

SlackTaskCardBlock

Struct SlackTaskCardBlock 

Source
pub struct SlackTaskCardBlock {
    pub task_id: SlackTaskId,
    pub title: String,
    pub block_id: Option<SlackBlockId>,
    pub status: Option<SlackTaskCardStatus>,
    pub details: Option<SlackRichTextInlineContent>,
    pub output: Option<SlackRichTextInlineContent>,
    pub sources: Option<Vec<SlackTaskCardSource>>,
}
Expand description
  • https://docs.slack.dev/reference/block-kit/blocks/task-card-block

Fields§

§task_id: SlackTaskId§title: String§block_id: Option<SlackBlockId>§status: Option<SlackTaskCardStatus>§details: Option<SlackRichTextInlineContent>§output: Option<SlackRichTextInlineContent>§sources: Option<Vec<SlackTaskCardSource>>

Implementations§

Source§

impl SlackTaskCardBlock

Source

pub fn new(task_id: SlackTaskId, title: String) -> Self

Source

pub fn task_id(&mut self, value: SlackTaskId) -> &mut Self

Source

pub fn with_task_id(self, value: SlackTaskId) -> Self

Source

pub fn title(&mut self, value: String) -> &mut Self

Source

pub fn with_title(self, value: String) -> Self

Source

pub fn block_id(&mut self, value: SlackBlockId) -> &mut Self

Source

pub fn reset_block_id(&mut self) -> &mut Self

Source

pub fn mopt_block_id(&mut self, value: Option<SlackBlockId>) -> &mut Self

Source

pub fn with_block_id(self, value: SlackBlockId) -> Self

Source

pub fn without_block_id(self) -> Self

Source

pub fn opt_block_id(self, value: Option<SlackBlockId>) -> Self

Source

pub fn status(&mut self, value: SlackTaskCardStatus) -> &mut Self

Source

pub fn reset_status(&mut self) -> &mut Self

Source

pub fn mopt_status(&mut self, value: Option<SlackTaskCardStatus>) -> &mut Self

Source

pub fn with_status(self, value: SlackTaskCardStatus) -> Self

Source

pub fn without_status(self) -> Self

Source

pub fn opt_status(self, value: Option<SlackTaskCardStatus>) -> Self

Source

pub fn details(&mut self, value: SlackRichTextInlineContent) -> &mut Self

Source

pub fn reset_details(&mut self) -> &mut Self

Source

pub fn mopt_details( &mut self, value: Option<SlackRichTextInlineContent>, ) -> &mut Self

Source

pub fn with_details(self, value: SlackRichTextInlineContent) -> Self

Source

pub fn without_details(self) -> Self

Source

pub fn opt_details(self, value: Option<SlackRichTextInlineContent>) -> Self

Source

pub fn output(&mut self, value: SlackRichTextInlineContent) -> &mut Self

Source

pub fn reset_output(&mut self) -> &mut Self

Source

pub fn mopt_output( &mut self, value: Option<SlackRichTextInlineContent>, ) -> &mut Self

Source

pub fn with_output(self, value: SlackRichTextInlineContent) -> Self

Source

pub fn without_output(self) -> Self

Source

pub fn opt_output(self, value: Option<SlackRichTextInlineContent>) -> Self

Source

pub fn sources(&mut self, value: Vec<SlackTaskCardSource>) -> &mut Self

Source

pub fn reset_sources(&mut self) -> &mut Self

Source

pub fn mopt_sources( &mut self, value: Option<Vec<SlackTaskCardSource>>, ) -> &mut Self

Source

pub fn with_sources(self, value: Vec<SlackTaskCardSource>) -> Self

Source

pub fn without_sources(self) -> Self

Source

pub fn opt_sources(self, value: Option<Vec<SlackTaskCardSource>>) -> Self

Trait Implementations§

Source§

impl Clone for SlackTaskCardBlock

Source§

fn clone(&self) -> SlackTaskCardBlock

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SlackTaskCardBlock

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SlackTaskCardBlock

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<SlackTaskCardBlock> for SlackBlock

Source§

fn from(block: SlackTaskCardBlock) -> Self

Converts to this type from the input type.
Source§

impl From<SlackTaskCardBlockInit> for SlackTaskCardBlock

Source§

fn from(value: SlackTaskCardBlockInit) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for SlackTaskCardBlock

Source§

fn eq(&self, other: &SlackTaskCardBlock) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for SlackTaskCardBlock

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for SlackTaskCardBlock

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,