pub struct ProviderModeTiedSets {
pub values: HostTensorOwned,
pub offsets: Vec<usize>,
pub counts: Vec<usize>,
}Expand description
Sorted tied modal values for each output slice.
values stores all tied values for all slices in ascending per-slice order.
offsets and counts are one entry per output slice and describe the
slice-local range inside values. Runtime callers convert this ragged
representation into MATLAB cell output C.
Fields§
§values: HostTensorOwned§offsets: Vec<usize>§counts: Vec<usize>Trait Implementations§
Source§impl Clone for ProviderModeTiedSets
impl Clone for ProviderModeTiedSets
Source§fn clone(&self) -> ProviderModeTiedSets
fn clone(&self) -> ProviderModeTiedSets
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 ProviderModeTiedSets
impl Debug for ProviderModeTiedSets
Source§impl<'de> Deserialize<'de> for ProviderModeTiedSets
impl<'de> Deserialize<'de> for ProviderModeTiedSets
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProviderModeTiedSets
impl PartialEq for ProviderModeTiedSets
Source§impl Serialize for ProviderModeTiedSets
impl Serialize for ProviderModeTiedSets
impl StructuralPartialEq for ProviderModeTiedSets
Auto Trait Implementations§
impl Freeze for ProviderModeTiedSets
impl RefUnwindSafe for ProviderModeTiedSets
impl Send for ProviderModeTiedSets
impl Sync for ProviderModeTiedSets
impl Unpin for ProviderModeTiedSets
impl UnsafeUnpin for ProviderModeTiedSets
impl UnwindSafe for ProviderModeTiedSets
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