Trait game_library::InternalId
source · 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§
sourcefn get_internal_id(&self) -> String
fn get_internal_id(&self) -> String
Get the object’s internal ID.
sourcefn update_internal_id(&mut self)
fn update_internal_id(&mut self)
Update the object’s internal ID.
Object Safety§
This trait is not object safe.