Struct windows::AI::MachineLearning::TensorUInt16Bit
pub struct TensorUInt16Bit(/* private fields */);
Implementations§
§impl TensorUInt16Bit
impl TensorUInt16Bit
pub fn Kind(&self) -> Result<LearningModelFeatureKind>
pub fn CreateReference(&self) -> Result<IMemoryBufferReference>
pub fn CreateReference(&self) -> Result<IMemoryBufferReference>
Required features: "Foundation"
pub fn TensorKind(&self) -> Result<TensorKind>
pub fn Shape(&self) -> Result<IVectorView<i64>>
pub fn Shape(&self) -> Result<IVectorView<i64>>
Required features: "Foundation_Collections"
pub fn GetAsVectorView(&self) -> Result<IVectorView<u16>>
pub fn GetAsVectorView(&self) -> Result<IVectorView<u16>>
Required features: "Foundation_Collections"
pub fn Create() -> Result<TensorUInt16Bit>
pub fn Create2<P0>(shape: P0) -> Result<TensorUInt16Bit>where
P0: TryIntoParam<IIterable<i64>>,
pub fn Create2<P0>(shape: P0) -> Result<TensorUInt16Bit>where P0: TryIntoParam<IIterable<i64>>,
Required features: "Foundation_Collections"
pub fn CreateFromArray<P0>(shape: P0, data: &[u16]) -> Result<TensorUInt16Bit>where
P0: TryIntoParam<IIterable<i64>>,
pub fn CreateFromArray<P0>(shape: P0, data: &[u16]) -> Result<TensorUInt16Bit>where P0: TryIntoParam<IIterable<i64>>,
Required features: "Foundation_Collections"
pub fn CreateFromIterable<P0, P1>(
shape: P0,
data: P1
) -> Result<TensorUInt16Bit>where
P0: TryIntoParam<IIterable<i64>>,
P1: TryIntoParam<IIterable<u16>>,
pub fn CreateFromIterable<P0, P1>( shape: P0, data: P1 ) -> Result<TensorUInt16Bit>where P0: TryIntoParam<IIterable<i64>>, P1: TryIntoParam<IIterable<u16>>,
Required features: "Foundation_Collections"
pub fn CreateFromShapeArrayAndDataArray( shape: &[i64], data: &[u16] ) -> Result<TensorUInt16Bit>
pub fn CreateFromBuffer<P0>(
shape: &[i64],
buffer: P0
) -> Result<TensorUInt16Bit>where
P0: TryIntoParam<IBuffer>,
pub fn CreateFromBuffer<P0>( shape: &[i64], buffer: P0 ) -> Result<TensorUInt16Bit>where P0: TryIntoParam<IBuffer>,
Required features: "Storage_Streams"
Trait Implementations§
§impl Clone for TensorUInt16Bit
impl Clone for TensorUInt16Bit
§fn clone(&self) -> TensorUInt16Bit
fn clone(&self) -> TensorUInt16Bit
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl ComInterface for TensorUInt16Bit
impl ComInterface for TensorUInt16Bit
§const IID: GUID = <ITensorUInt16Bit as ::windows_core::ComInterface>::IID
const IID: GUID = <ITensorUInt16Bit as ::windows_core::ComInterface>::IID
A unique identifier representing this interface.
fn as_unknown(&self) -> &IUnknown
§fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
fn cast<T>(&self) -> Result<T, Error>where T: ComInterface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§impl Debug for TensorUInt16Bit
impl Debug for TensorUInt16Bit
§impl Interface for TensorUInt16Bit
impl Interface for TensorUInt16Bit
type Vtable = ITensorUInt16Bit_Vtbl
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§impl PartialEq for TensorUInt16Bit
impl PartialEq for TensorUInt16Bit
§fn eq(&self, other: &TensorUInt16Bit) -> bool
fn eq(&self, other: &TensorUInt16Bit) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TensorUInt16Bit
impl Send for TensorUInt16Bit
impl StructuralEq for TensorUInt16Bit
impl StructuralPartialEq for TensorUInt16Bit
impl Sync for TensorUInt16Bit
Auto Trait Implementations§
impl RefUnwindSafe for TensorUInt16Bit
impl Unpin for TensorUInt16Bit
impl UnwindSafe for TensorUInt16Bit
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