pub struct ExecutableJob {
pub env: Option<IndexMap<String, String>>,
pub capabilities: Option<ExecutableJobCompatibilityMapV1>,
pub volumes: Option<Vec<AppVolume>>,
/* private fields */
}
Fields§
§env: Option<IndexMap<String, String>>
Environment variables.
capabilities: Option<ExecutableJobCompatibilityMapV1>
§volumes: Option<Vec<AppVolume>>
Trait Implementations§
Source§impl Clone for ExecutableJob
impl Clone for ExecutableJob
Source§fn clone(&self) -> ExecutableJob
fn clone(&self) -> ExecutableJob
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExecutableJob
impl Debug for ExecutableJob
Source§impl<'de> Deserialize<'de> for ExecutableJob
impl<'de> Deserialize<'de> for ExecutableJob
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for ExecutableJob
impl JsonSchema for ExecutableJob
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for ExecutableJob
impl PartialEq for ExecutableJob
Source§impl Serialize for ExecutableJob
impl Serialize for ExecutableJob
impl Eq for ExecutableJob
impl StructuralPartialEq for ExecutableJob
Auto Trait Implementations§
impl Freeze for ExecutableJob
impl RefUnwindSafe for ExecutableJob
impl Send for ExecutableJob
impl Sync for ExecutableJob
impl Unpin for ExecutableJob
impl UnwindSafe for ExecutableJob
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.