pub struct NdTensorManifest {
pub schema_version: u32,
pub tensor_id: String,
pub representation_id: RepresentationId,
pub container: String,
pub dtype: NdTensorDType,
pub shape: Vec<usize>,
pub observation_ids: Vec<ObservationId>,
pub row_count: usize,
pub element_bytes: usize,
pub data_bytes: usize,
pub tensor_fingerprint: String,
}Expand description
Provider-wide manifest of one stored tensor (no payload bytes).
Fields§
§schema_version: u32§tensor_id: String§representation_id: RepresentationId§container: String§dtype: NdTensorDType§shape: Vec<usize>§observation_ids: Vec<ObservationId>§row_count: usize§element_bytes: usize§data_bytes: usize§tensor_fingerprint: StringTrait Implementations§
Source§impl Clone for NdTensorManifest
impl Clone for NdTensorManifest
Source§fn clone(&self) -> NdTensorManifest
fn clone(&self) -> NdTensorManifest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NdTensorManifest
impl Debug for NdTensorManifest
Source§impl<'de> Deserialize<'de> for NdTensorManifest
impl<'de> Deserialize<'de> for NdTensorManifest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NdTensorManifest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NdTensorManifest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NdTensorManifest
Source§impl PartialEq for NdTensorManifest
impl PartialEq for NdTensorManifest
Source§fn eq(&self, other: &NdTensorManifest) -> bool
fn eq(&self, other: &NdTensorManifest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NdTensorManifest
impl Serialize for NdTensorManifest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for NdTensorManifest
Auto Trait Implementations§
impl Freeze for NdTensorManifest
impl RefUnwindSafe for NdTensorManifest
impl Send for NdTensorManifest
impl Sync for NdTensorManifest
impl Unpin for NdTensorManifest
impl UnsafeUnpin for NdTensorManifest
impl UnwindSafe for NdTensorManifest
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