Struct slack_blocks::compose::text::plain::Contents [−][src]
pub struct Contents { /* fields omitted */ }Expand description
Just plain text
Only formatting available is emojis.
Implementations
impl Contents[src]
impl Contents[src]pub fn from_text(text: impl ToString) -> Self[src]
pub fn from_text(text: impl ToString) -> Self[src]Construct some markdown text from a string or string-like value
Arguments
text- The text contents to render for thisTextobject. For some basic formatting examples, see the docs above for the Contents struct itself, or Slack’s markdown docs 🔗. There are no intrinsic length limits on this, those are usually requirements of the context the text will be used in.
Example
use slack_blocks::compose::text::{mrkdwn, Text}; let text = mrkdwn::Contents::from_text("This link doesn't work! :tada: https://www.cheese.com") .with_verbatim(true);
pub fn with_emoji(self, emoji: bool) -> Self[src]
pub fn with_emoji(self, emoji: bool) -> Self[src]Trait Implementations
impl<'de> Deserialize<'de> for Contents[src]
impl<'de> Deserialize<'de> for Contents[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Contents[src]
Auto Trait Implementations
impl RefUnwindSafe for Contents
impl Send for Contents
impl Sync for Contents
impl Unpin for Contents
impl UnwindSafe for Contents
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> ToSlackPlaintext for T where
T: Into<Contents>, [src]
impl<T> ToSlackPlaintext for T where
T: Into<Contents>, [src]impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,