ContentBlock

Enum ContentBlock 

Source
pub enum ContentBlock {
    Text {
        text: String,
        annotations: Option<Annotations>,
        meta: Option<HashMap<String, Value>>,
    },
    Image {
        data: String,
        mime_type: String,
        annotations: Option<Annotations>,
        meta: Option<HashMap<String, Value>>,
    },
    Audio {
        data: String,
        mime_type: String,
        annotations: Option<Annotations>,
        meta: Option<HashMap<String, Value>>,
    },
    ResourceLink {
        resource: ResourceReference,
        annotations: Option<Annotations>,
        meta: Option<HashMap<String, Value>>,
    },
    Resource {
        resource: ResourceContents,
        annotations: Option<Annotations>,
        meta: Option<HashMap<String, Value>>,
    },
}
Expand description

Content block union type matching MCP 2025-06-18 specification exactly

Variants§

§

Text

Text content

Fields

§text: String
§annotations: Option<Annotations>
§

Image

Image content

Fields

§data: String

Base64-encoded image data

§mime_type: String

MIME type of the image

§annotations: Option<Annotations>
§

Audio

Audio content

Fields

§data: String

Base64-encoded audio data

§mime_type: String

MIME type of the audio

§annotations: Option<Annotations>

Resource link (ResourceLink from MCP spec)

Fields

§annotations: Option<Annotations>
§

Resource

Embedded resource (EmbeddedResource from MCP spec)

Fields

§annotations: Option<Annotations>

Implementations§

Source§

impl ContentBlock

Source

pub fn text(text: impl Into<String>) -> ContentBlock

Create text content

Source

pub fn text_with_annotations( text: impl Into<String>, annotations: Annotations, ) -> ContentBlock

Create text content with annotations

Source

pub fn image( data: impl Into<String>, mime_type: impl Into<String>, ) -> ContentBlock

Create image content

Source

pub fn audio( data: impl Into<String>, mime_type: impl Into<String>, ) -> ContentBlock

Create audio content

Create resource link

Source

pub fn resource(resource: ResourceContents) -> ContentBlock

Create embedded resource

Source

pub fn with_annotations(self, annotations: Annotations) -> ContentBlock

Add annotations to any content block

Source

pub fn with_meta(self, meta: HashMap<String, Value>) -> ContentBlock

Add meta to any content block

Trait Implementations§

Source§

impl Clone for ContentBlock

Source§

fn clone(&self) -> ContentBlock

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for ContentBlock

Source§

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

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

impl<'de> Deserialize<'de> for ContentBlock

Source§

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

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

impl Serialize for ContentBlock

Source§

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

Serialize this value into the given Serde serializer. Read more

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, 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,