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

Required methods

Implementors