Trait matrix_sdk::media::UniqueKey[][src]

pub trait UniqueKey {
    fn unique_key(&self) -> String;
}
Expand description

A trait to uniquely identify values of the same type.

Required methods

A string that uniquely identifies Self compared to other values of the same type.

Implementors