[][src]Struct tch::Scalar

pub struct Scalar { /* fields omitted */ }

A single scalar value.

Methods

impl Scalar[src]

pub fn int(v: i64) -> Scalar[src]

Creates an integer scalar.

pub fn float(v: f64) -> Scalar[src]

Creates a float scalar scalar.

pub fn to_int(&self) -> Fallible<i64>[src]

Returns an integer value.

pub fn to_float(&self) -> Fallible<f64>[src]

Returns a float value.

pub fn to_string(&self) -> Fallible<String>[src]

Returns a string representation of the scalar.

Trait Implementations

impl Debug for Scalar[src]

impl Drop for Scalar[src]

impl<'_> From<&'_ Scalar> for i64[src]

impl<'_> From<&'_ Scalar> for f64[src]

impl From<Scalar> for i64[src]

impl From<Scalar> for f64[src]

impl From<f64> for Scalar[src]

impl From<i64> for Scalar[src]

Auto Trait Implementations

impl RefUnwindSafe for Scalar

impl !Send for Scalar

impl !Sync for Scalar

impl Unpin for Scalar

impl UnwindSafe for Scalar

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> From<T> for T[src]

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

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.