[][src]Trait fluent::types::AnyEq

pub trait AnyEq: 'static + Any {
    pub fn equals(&self, other: &(dyn Any + 'static)) -> bool;
pub fn as_any(&self) -> &(dyn Any + 'static); }

Required methods

pub fn equals(&self, other: &(dyn Any + 'static)) -> bool[src]

pub fn as_any(&self) -> &(dyn Any + 'static)[src]

Loading content...

Implementors

impl<T> AnyEq for T where
    T: PartialEq<T> + Any
[src]

Loading content...