font_types

Trait Compatible

Source
pub trait Compatible<Rhs = Self>: Sized {
    // Required method
    fn compatible(&self, other: Rhs) -> bool;
}
Expand description

A trait for determining whether versions are compatible.

Required Methods§

Source

fn compatible(&self, other: Rhs) -> bool

return true if this version is field-compatible with other.

This is kind of poorly defined, but basically means ‘same major version, greater than or equal minor version’.

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 Compatible for u16

Source§

fn compatible(&self, other: Self) -> bool

Implementors§