pub struct ProfileSummary {
pub id: i64,
pub name: String,
pub game_id: GameId,
pub mod_count: usize,
pub source_type: String,
}Expand description
Summary view of a profile (without loading all mods).
Fields§
§id: i64§name: String§game_id: GameId§mod_count: usize§source_type: StringTrait Implementations§
Source§impl Clone for ProfileSummary
impl Clone for ProfileSummary
Source§fn clone(&self) -> ProfileSummary
fn clone(&self) -> ProfileSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProfileSummary
impl Debug for ProfileSummary
Source§impl PartialEq for ProfileSummary
impl PartialEq for ProfileSummary
Source§fn eq(&self, other: &ProfileSummary) -> bool
fn eq(&self, other: &ProfileSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProfileSummary
Auto Trait Implementations§
impl Freeze for ProfileSummary
impl RefUnwindSafe for ProfileSummary
impl Send for ProfileSummary
impl Sync for ProfileSummary
impl Unpin for ProfileSummary
impl UnsafeUnpin for ProfileSummary
impl UnwindSafe for ProfileSummary
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