pub struct NodeProperties {
pub main_node: i64,
pub node_range_properties: Vec<NodeRangeProperty>,
pub num_nodes: i64,
}Expand description
An object representing the node properties of a multi-node parallel job.
Fields§
§main_node: i64Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.
node_range_properties: Vec<NodeRangeProperty>A list of node ranges and their properties associated with a multi-node parallel job.
num_nodes: i64The number of nodes associated with a multi-node parallel job.
Trait Implementations§
Source§impl Clone for NodeProperties
impl Clone for NodeProperties
Source§fn clone(&self) -> NodeProperties
fn clone(&self) -> NodeProperties
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 NodeProperties
impl Debug for NodeProperties
Source§impl Default for NodeProperties
impl Default for NodeProperties
Source§fn default() -> NodeProperties
fn default() -> NodeProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeProperties
impl<'de> Deserialize<'de> for NodeProperties
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 NodeProperties
impl PartialEq for NodeProperties
Source§impl Serialize for NodeProperties
impl Serialize for NodeProperties
impl StructuralPartialEq for NodeProperties
Auto Trait Implementations§
impl Freeze for NodeProperties
impl RefUnwindSafe for NodeProperties
impl Send for NodeProperties
impl Sync for NodeProperties
impl Unpin for NodeProperties
impl UnwindSafe for NodeProperties
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