Skip to main content

IntegerDisplayable

Trait IntegerDisplayable 

Source
pub trait IntegerDisplayable {
    // Required method
    fn integer_type() -> IntegerType;

    // Provided method
    fn with_display(display: IntegerDisplay) -> Link { ... }
}

Required Methods§

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl IntegerDisplayable for i8

Source§

impl IntegerDisplayable for i16

Source§

impl IntegerDisplayable for i32

Source§

impl IntegerDisplayable for i64

Source§

impl IntegerDisplayable for i128

Source§

impl IntegerDisplayable for u8

Source§

impl IntegerDisplayable for u16

Source§

impl IntegerDisplayable for u32

Source§

impl IntegerDisplayable for u64

Source§

impl IntegerDisplayable for u128

Implementors§