Trait vtkObjectBase

Source
pub trait vtkObjectBase: Sealed {
    // Provided methods
    fn get_class_name(&self) -> String { ... }
    fn is_a(&self, class_name: &str) -> bool { ... }
    fn get_number_of_generations_from_base(&self, base_class: &str) -> i64 { ... }
    fn get_reference_count(&self) -> i64 { ... }
    fn set_reference_count(&mut self, count: i64) { ... }
    fn get_is_in_memkind(&self) -> bool { ... }
    fn print_self(&self, indent: u64) -> String { ... }
    fn print_header(&self, indent: u64) -> String { ... }
    fn print_trailer(&self, indent: u64) -> String { ... }
}
Expand description

Provided Methods§

Source

fn get_class_name(&self) -> String

Source

fn is_a(&self, class_name: &str) -> bool

Source

fn get_number_of_generations_from_base(&self, base_class: &str) -> i64

Source

fn get_reference_count(&self) -> i64

Source

fn set_reference_count(&mut self, count: i64)

Source

fn get_is_in_memkind(&self) -> bool

Source

fn print_self(&self, indent: u64) -> String

Source

fn print_header(&self, indent: u64) -> String

Source

fn print_trailer(&self, indent: u64) -> String

Implementors§