[][src]Struct rusoto_glue::Segment

pub struct Segment {
    pub segment_number: i64,
    pub total_segments: i64,
}

Defines a non-overlapping region of a table's partitions, allowing multiple requests to be executed in parallel.

Fields

segment_number: i64

The zero-based index number of the segment. For example, if the total number of segments is 4, SegmentNumber values range from 0 through 3.

total_segments: i64

The total number of segments.

Trait Implementations

impl Clone for Segment[src]

impl Debug for Segment[src]

impl Default for Segment[src]

impl PartialEq<Segment> for Segment[src]

impl Serialize for Segment[src]

impl StructuralPartialEq for Segment[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.