pub trait _Object {
    fn __repr__(&self) -> String;
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 str(object)

Implementors

object trait