Enum candle_core::pickle::Object

source ·
pub enum Object {
Show 13 variants Class { module_name: String, class_name: String, }, Int(i32), Float(f64), Unicode(String), Bool(bool), None, Tuple(Vec<Object>), List(Vec<Object>), Mark, Dict(Vec<(Object, Object)>), Reduce { callable: Box<Object>, args: Box<Object>, }, Build { callable: Box<Object>, args: Box<Object>, }, PersistentLoad(Box<Object>),
}

Variants§

§

Class

Fields

§module_name: String
§class_name: String
§

Int(i32)

§

Float(f64)

§

Unicode(String)

§

Bool(bool)

§

None

§

Tuple(Vec<Object>)

§

List(Vec<Object>)

§

Mark

§

Dict(Vec<(Object, Object)>)

§

Reduce

Fields

§callable: Box<Object>
§args: Box<Object>
§

Build

Fields

§callable: Box<Object>
§args: Box<Object>
§

PersistentLoad(Box<Object>)

Implementations§

source§

impl Object

source

pub fn unicode(self) -> Result<String, Object>

source

pub fn reduce(self) -> Result<(Self, Self), Object>

source

pub fn none(self) -> Result<(), Object>

source

pub fn persistent_load(self) -> Result<Self, Object>

source

pub fn bool(self) -> Result<bool, Object>

source

pub fn int(self) -> Result<i32, Object>

source

pub fn tuple(self) -> Result<Vec<Self>, Object>

source

pub fn dict(self) -> Result<Vec<(Self, Self)>, Object>

source

pub fn class(self) -> Result<(String, String), Object>

source

pub fn into_tensor_info( self, name: Self, dir_name: &Path ) -> Result<Option<TensorInfo>>

Trait Implementations§

source§

impl Clone for Object

source§

fn clone(&self) -> Object

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Object

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Object> for Error

source§

fn from(value: Object) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Object

source§

fn eq(&self, other: &Object) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Object> for String

§

type Error = Object

The type returned in the event of a conversion error.
source§

fn try_from(value: Object) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T: TryFrom<Object, Error = Object>> TryFrom<Object> for Vec<T>

§

type Error = Object

The type returned in the event of a conversion error.
source§

fn try_from(value: Object) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<Object> for usize

§

type Error = Object

The type returned in the event of a conversion error.
source§

fn try_from(value: Object) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl StructuralPartialEq for Object

Auto Trait Implementations§

§

impl Freeze for Object

§

impl RefUnwindSafe for Object

§

impl Send for Object

§

impl Sync for Object

§

impl Unpin for Object

§

impl UnwindSafe for Object

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> ErasedDestructor for T
where T: 'static,