pub struct AchievementRecord {
pub id: Uuid,
pub audio_file_hash: Option<DataHash>,
}Expand description
Record representing an achievement, including its UUID and optional audio file hash.
Fields§
§id: UuidUUID of the achievement.
audio_file_hash: Option<DataHash>Optional hash of the associated audio file.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AchievementRecord
impl RefUnwindSafe for AchievementRecord
impl Send for AchievementRecord
impl Sync for AchievementRecord
impl Unpin for AchievementRecord
impl UnwindSafe for AchievementRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more