Entry

Trait Entry 

Source
pub trait Entry:
    EntryMarker
    + 'static
    + From<Entry> {
    // Required method
    fn user_data(self, user_data: u64) -> Self;
}

Required Methods§

Source

fn user_data(self, user_data: u64) -> Self

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 Entry for Entry128

Source§

fn user_data(self, user_data: u64) -> Self

Source§

impl Entry for Entry

Source§

fn user_data(self, user_data: u64) -> Self

Implementors§