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§
Sourcefn get_job_id(&self) -> Option<&String>
fn get_job_id(&self) -> Option<&String>
Gets JobId property.
Sourcefn set_job_id(&mut self, value: String) -> &mut Self
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.