Trait JobIdDimension

Source
pub trait JobIdDimension {
    // Required methods
    fn get_job_id(&self) -> Option<&String>;
    fn set_job_id(&mut self, value: String) -> &mut Self;
}
Expand description

Extends Dimensions within a new JobIdDimension.

Required Methods§

Source

fn get_job_id(&self) -> Option<&String>

Gets JobId property.

Source

fn set_job_id(&mut self, value: String) -> &mut Self

Sets JobId property.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§