pub trait InternalId: Sized {
    // Required methods
    fn get_internal_id(&self) -> String;
    fn update_internal_id(&mut self);
}
Expand description

Trait for objects that have an internal ID.

This is useful for objects that need to be identified by a unique ID.

Required Methods§

source

fn get_internal_id(&self) -> String

Get the object’s internal ID.

source

fn update_internal_id(&mut self)

Update the object’s internal ID.

Object Safety§

This trait is not object safe.

Implementors§