[][src]Struct tensorflow_proto::xla::LoadDataRequest

pub struct LoadDataRequest {
    pub columnio_tablet_path: String,
    pub columnio_field: String,
    pub element_shape: Option<ShapeProto>,
    pub offset: i64,
    pub limit: i64,
    pub zip: bool,
}

Fields

columnio_tablet_path: String

Describes the path of the ColumnIO tablet to load.

columnio_field: String

Describes the field to load within the ColumnIO tablet.

element_shape: Option<ShapeProto>

Individual element shape, excluding rows.

offset: i64

Warning: ColumnIO does not support random-access, so use offset with caution in performance-critical scenarios.

limit: i64

Maximum number of elements (with shape element_shape) to load.

zip: bool

If more than one item is requested (via limit > 1), then this request attribute zips together the produced vectors.

Trait Implementations

impl Clone for LoadDataRequest[src]

impl Debug for LoadDataRequest[src]

impl Default for LoadDataRequest[src]

impl Message for LoadDataRequest[src]

impl PartialEq<LoadDataRequest> for LoadDataRequest[src]

impl StructuralPartialEq for LoadDataRequest[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.