pub trait _Object {
    fn __repr__(&self) -> String;
fn __len__(&self) -> usize;
fn __str__(&self) -> String; }
Expand description

the supreme _Object trait that its derived types should implement like all the functions from python

Required methods

python repr(object)

python len(object)

python str(object)

Implementors