[][src]Struct rusoto_batch::NodeRangeProperty

pub struct NodeRangeProperty {
    pub container: Option<ContainerProperties>,
    pub target_nodes: String,
}

An object representing the properties of the node range for a multi-node parallel job.

Fields

container: Option<ContainerProperties>

The container details for the node range.

target_nodes: String

The range of nodes, using node index values. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range. Your accumulative node ranges must account for all nodes (0:n). You may nest node ranges, for example 0:10 and 4:5, in which case the 4:5 range properties override the 0:10 properties.

Trait Implementations

impl PartialEq<NodeRangeProperty> for NodeRangeProperty[src]

impl Default for NodeRangeProperty[src]

impl Clone for NodeRangeProperty[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NodeRangeProperty[src]

impl Serialize for NodeRangeProperty[src]

impl<'de> Deserialize<'de> for NodeRangeProperty[src]

Auto Trait Implementations

impl Send for NodeRangeProperty

impl Sync for NodeRangeProperty

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self