pub struct AchievementResolutionProgress {
pub stuff_id: LegacyId,
pub achievement_id: LegacyId,
pub required_level_badge_code: String,
pub user_progress: i32,
pub total_progress: i32,
pub end_time: i32,
}
Fields§
§stuff_id: LegacyId
§achievement_id: LegacyId
§required_level_badge_code: String
§user_progress: i32
§total_progress: i32
§end_time: i32
Trait Implementations§
source§impl BaseParser for AchievementResolutionProgress
impl BaseParser for AchievementResolutionProgress
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for AchievementResolutionProgress
impl Clone for AchievementResolutionProgress
source§fn clone(&self) -> AchievementResolutionProgress
fn clone(&self) -> AchievementResolutionProgress
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for AchievementResolutionProgress
impl Default for AchievementResolutionProgress
source§fn default() -> AchievementResolutionProgress
fn default() -> AchievementResolutionProgress
Returns the “default value” for a type. Read more
source§impl PartialEq<AchievementResolutionProgress> for AchievementResolutionProgress
impl PartialEq<AchievementResolutionProgress> for AchievementResolutionProgress
source§fn eq(&self, other: &AchievementResolutionProgress) -> bool
fn eq(&self, other: &AchievementResolutionProgress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AchievementResolutionProgress
Auto Trait Implementations§
impl RefUnwindSafe for AchievementResolutionProgress
impl Send for AchievementResolutionProgress
impl Sync for AchievementResolutionProgress
impl Unpin for AchievementResolutionProgress
impl UnwindSafe for AchievementResolutionProgress
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