pub struct NodeDetails {
pub is_main_node: Option<bool>,
pub node_index: Option<i64>,
}Expand description
An object representing the details of a multi-node parallel job node.
Fields§
§is_main_node: Option<bool>Specifies whether the current node is the main node for a multi-node parallel job.
node_index: Option<i64>The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.
Trait Implementations§
Source§impl Clone for NodeDetails
impl Clone for NodeDetails
Source§fn clone(&self) -> NodeDetails
fn clone(&self) -> NodeDetails
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 NodeDetails
impl Debug for NodeDetails
Source§impl Default for NodeDetails
impl Default for NodeDetails
Source§fn default() -> NodeDetails
fn default() -> NodeDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeDetails
impl<'de> Deserialize<'de> for NodeDetails
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 NodeDetails
impl PartialEq for NodeDetails
impl StructuralPartialEq for NodeDetails
Auto Trait Implementations§
impl Freeze for NodeDetails
impl RefUnwindSafe for NodeDetails
impl Send for NodeDetails
impl Sync for NodeDetails
impl Unpin for NodeDetails
impl UnwindSafe for NodeDetails
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