pub struct PullTaskResponse {
pub context_id: ContextId,
pub execution_id: ExecutionId,
pub task_id: TaskId,
pub task_name: String,
pub container_image: String,
pub container_pull_user: Option<String>,
pub container_pull_pwd: Option<String>,
pub env_variables: Option<HashMap<String, EnvironmentVariablesValue>>,
}Fields§
§context_id: ContextId§execution_id: ExecutionId§task_id: TaskId§task_name: String§container_image: String§container_pull_user: Option<String>§container_pull_pwd: Option<String>§env_variables: Option<HashMap<String, EnvironmentVariablesValue>>Implementations§
Source§impl PullTaskResponse
impl PullTaskResponse
pub fn new( context_id: ContextId, execution_id: ExecutionId, task_id: TaskId, task_name: String, container_image: String, ) -> PullTaskResponse
Trait Implementations§
Source§impl Clone for PullTaskResponse
impl Clone for PullTaskResponse
Source§fn clone(&self) -> PullTaskResponse
fn clone(&self) -> PullTaskResponse
Returns a duplicate 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 PullTaskResponse
impl Debug for PullTaskResponse
Source§impl Default for PullTaskResponse
impl Default for PullTaskResponse
Source§fn default() -> PullTaskResponse
fn default() -> PullTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullTaskResponse
impl<'de> Deserialize<'de> for PullTaskResponse
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 PartialEq for PullTaskResponse
impl PartialEq for PullTaskResponse
Source§impl Serialize for PullTaskResponse
impl Serialize for PullTaskResponse
impl StructuralPartialEq for PullTaskResponse
Auto Trait Implementations§
impl Freeze for PullTaskResponse
impl RefUnwindSafe for PullTaskResponse
impl Send for PullTaskResponse
impl Sync for PullTaskResponse
impl Unpin for PullTaskResponse
impl UnwindSafe for PullTaskResponse
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