Enum jenkins_api::action::PipelineNode [] [src]

pub enum PipelineNode {
    FlowStartNode {},
    StepStartNode {},
    StepAtomNode {},
    StepEndNode {},
    FlowEndNode {},
    Unknown {
        class: Option<String>,
    },
}

A node of a pipeline

Variants

Beginning of a flow

Fields of FlowStartNode

Beginning of a step

Fields of StepStartNode

A step

Fields of StepAtomNode

End of a step

Fields of StepEndNode

End of a flow

Fields of FlowEndNode

Default case used when none other matched

Fields of Unknown

_class provided by Jenkins

Trait Implementations

impl Debug for PipelineNode
[src]

[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for PipelineNode
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for PipelineNode

impl Sync for PipelineNode