Struct tfrecord::protos::DeviceLocality[][src]

pub struct DeviceLocality {
    pub bus_id: i32,
    pub numa_node: i32,
    pub links: Option<LocalLinks>,
}

Fields

bus_id: i32

Optional bus locality of device. Default value of 0 means no specific locality. Specific localities are indexed from 1.

numa_node: i32

Optional NUMA locality of device.

links: Option<LocalLinks>

Optional local interconnect links to other devices.

Trait Implementations

impl Clone for DeviceLocality[src]

impl Debug for DeviceLocality[src]

impl Default for DeviceLocality[src]

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

impl Message for DeviceLocality[src]

impl PartialEq<DeviceLocality> for DeviceLocality[src]

impl Serialize for DeviceLocality[src]

impl StructuralPartialEq for DeviceLocality[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,