Trait UUIDd
Source pub trait UUIDd {
// Required methods
fn uuid(&self) -> &Uuid;
fn set_uuid(&mut self, u: Uuid);
}
Expand description
Something with a Uuid.
This trait can be used by things that should have a Uuid.
Get the UUID of the object that implements this.
Set the UUID of the object that implements this.
§Arguments