Struct windows::AI::MachineLearning::TensorInt64Bit
pub struct TensorInt64Bit(/* private fields */);
Implementations§
§impl TensorInt64Bit
impl TensorInt64Bit
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<i64>>
pub fn GetAsVectorView(&self) -> Result<IVectorView<i64>>
Required features: "Foundation_Collections"
pub fn Create() -> Result<TensorInt64Bit>
pub fn Create2<P0>(shape: P0) -> Result<TensorInt64Bit>where
P0: TryIntoParam<IIterable<i64>>,
pub fn Create2<P0>(shape: P0) -> Result<TensorInt64Bit>where P0: TryIntoParam<IIterable<i64>>,
Required features: "Foundation_Collections"
pub fn CreateFromArray<P0>(shape: P0, data: &[i64]) -> Result<TensorInt64Bit>where
P0: TryIntoParam<IIterable<i64>>,
pub fn CreateFromArray<P0>(shape: P0, data: &[i64]) -> Result<TensorInt64Bit>where P0: TryIntoParam<IIterable<i64>>,
Required features: "Foundation_Collections"
pub fn CreateFromIterable<P0, P1>(shape: P0, data: P1) -> Result<TensorInt64Bit>where
P0: TryIntoParam<IIterable<i64>>,
P1: TryIntoParam<IIterable<i64>>,
pub fn CreateFromIterable<P0, P1>(shape: P0, data: P1) -> Result<TensorInt64Bit>where P0: TryIntoParam<IIterable<i64>>, P1: TryIntoParam<IIterable<i64>>,
Required features: "Foundation_Collections"
pub fn CreateFromShapeArrayAndDataArray( shape: &[i64], data: &[i64] ) -> Result<TensorInt64Bit>
pub fn CreateFromBuffer<P0>(shape: &[i64], buffer: P0) -> Result<TensorInt64Bit>where
P0: TryIntoParam<IBuffer>,
pub fn CreateFromBuffer<P0>(shape: &[i64], buffer: P0) -> Result<TensorInt64Bit>where P0: TryIntoParam<IBuffer>,
Required features: "Storage_Streams"
Trait Implementations§
§impl Clone for TensorInt64Bit
impl Clone for TensorInt64Bit
§fn clone(&self) -> TensorInt64Bit
fn clone(&self) -> TensorInt64Bit
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 TensorInt64Bit
impl ComInterface for TensorInt64Bit
§const IID: GUID = <ITensorInt64Bit as ::windows_core::ComInterface>::IID
const IID: GUID = <ITensorInt64Bit 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 TensorInt64Bit
impl Debug for TensorInt64Bit
§impl Interface for TensorInt64Bit
impl Interface for TensorInt64Bit
type Vtable = ITensorInt64Bit_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 TensorInt64Bit
impl PartialEq for TensorInt64Bit
§fn eq(&self, other: &TensorInt64Bit) -> bool
fn eq(&self, other: &TensorInt64Bit) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TensorInt64Bit
impl Send for TensorInt64Bit
impl StructuralEq for TensorInt64Bit
impl StructuralPartialEq for TensorInt64Bit
impl Sync for TensorInt64Bit
Auto Trait Implementations§
impl RefUnwindSafe for TensorInt64Bit
impl Unpin for TensorInt64Bit
impl UnwindSafe for TensorInt64Bit
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