Struct stencila_schema::CodeChunk[][src]

pub struct CodeChunk {
Show fields pub type_: CodeChunk_, pub text: String, pub alters: Option<Vec<String>>, pub assigns: Option<Vec<CodeChunkAssigns>>, pub caption: Option<Box<CodeChunkCaption>>, pub declares: Option<Vec<CodeChunkDeclares>>, pub duration: Option<Box<f64>>, pub errors: Option<Vec<CodeError>>, pub export_from: Option<Box<String>>, pub format: Option<Box<String>>, pub id: Option<Box<String>>, pub import_to: Option<Box<String>>, pub imports: Option<Vec<CodeChunkImports>>, pub label: Option<Box<String>>, pub outputs: Option<Vec<Node>>, pub programming_language: Option<Box<String>>, pub reads: Option<Vec<String>>, pub uses: Option<Vec<CodeChunkUses>>,
}
Expand description

A executable chunk of code.

Fields

type_: CodeChunk_

The name of this type

text: String

The text of the code.

alters: Option<Vec<String>>

Names of variables that the code chunk alters.

assigns: Option<Vec<CodeChunkAssigns>>

Variables that the code chunk assigns to.

caption: Option<Box<CodeChunkCaption>>

A caption for the CodeChunk.

declares: Option<Vec<CodeChunkDeclares>>

Variables that the code chunk declares.

duration: Option<Box<f64>>

Duration in seconds of the last execution of the chunk.

errors: Option<Vec<CodeError>>

Errors when compiling or executing the chunk.

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.

imports: Option<Vec<CodeChunkImports>>

Software packages that the code chunk imports

label: Option<Box<String>>

A short label for the CodeChunk.

outputs: Option<Vec<Node>>

Outputs from executing the chunk.

programming_language: Option<Box<String>>

The programming language of the code.

reads: Option<Vec<String>>

Filesystem paths that this code chunk reads from.

uses: Option<Vec<CodeChunkUses>>

Names of variables that the code chunk uses (but does not alter).

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.