Struct stencila_schema::CodeBlock[][src]

pub struct CodeBlock {
    pub type_: CodeBlock_,
    pub text: String,
    pub export_from: Option<Box<String>>,
    pub format: Option<Box<String>>,
    pub id: Option<Box<String>>,
    pub import_to: Option<Box<String>>,
    pub programming_language: Option<Box<String>>,
}
Expand description

A code block.

Fields

type_: CodeBlock_

The name of this type

text: String

The text of the code.

export_from: Option<Box<String>>

A compilation directive giving the name of the variable to export into the content of the code block.

format: Option<Box<String>>

Media type, typically expressed using a MIME format, of the code.

id: Option<Box<String>>

The identifier for this item.

import_to: Option<Box<String>>

A compilation directive giving the name of the variable to import the content of the code block as.

programming_language: Option<Box<String>>

The programming language of the code.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Retrieve the type of an entity Needs to be called type_name because type is a reserved word Read more

Retrieve the id of an entity

Serialize this value into the given Serde serializer. Read more

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.

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.

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.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

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.