#[repr(C, packed(4))]
pub struct SteamUGCDetails_t {
Show 26 fields pub m_nPublishedFileId: PublishedFileId_t, pub m_eResult: EResult, pub m_eFileType: EWorkshopFileType, pub m_nCreatorAppID: AppId_t, pub m_nConsumerAppID: AppId_t, pub m_rgchTitle: [c_char; 129], pub m_rgchDescription: [c_char; 8000], pub m_ulSteamIDOwner: uint64, pub m_rtimeCreated: uint32, pub m_rtimeUpdated: uint32, pub m_rtimeAddedToUserList: uint32, pub m_eVisibility: ERemoteStoragePublishedFileVisibility, pub m_bBanned: bool, pub m_bAcceptedForUse: bool, pub m_bTagsTruncated: bool, pub m_rgchTags: [c_char; 1025], pub m_hFile: UGCHandle_t, pub m_hPreviewFile: UGCHandle_t, pub m_pchFileName: [c_char; 260], pub m_nFileSize: int32, pub m_nPreviewFileSize: int32, pub m_rgchURL: [c_char; 256], pub m_unVotesUp: uint32, pub m_unVotesDown: uint32, pub m_flScore: f32, pub m_unNumChildren: uint32,
}

Fields§

§m_nPublishedFileId: PublishedFileId_t§m_eResult: EResult§m_eFileType: EWorkshopFileType§m_nCreatorAppID: AppId_t§m_nConsumerAppID: AppId_t§m_rgchTitle: [c_char; 129]§m_rgchDescription: [c_char; 8000]§m_ulSteamIDOwner: uint64§m_rtimeCreated: uint32§m_rtimeUpdated: uint32§m_rtimeAddedToUserList: uint32§m_eVisibility: ERemoteStoragePublishedFileVisibility§m_bBanned: bool§m_bAcceptedForUse: bool§m_bTagsTruncated: bool§m_rgchTags: [c_char; 1025]§m_hFile: UGCHandle_t§m_hPreviewFile: UGCHandle_t§m_pchFileName: [c_char; 260]§m_nFileSize: int32§m_nPreviewFileSize: int32§m_rgchURL: [c_char; 256]§m_unVotesUp: uint32§m_unVotesDown: uint32§m_flScore: f32§m_unNumChildren: uint32

Trait Implementations§

source§

impl Clone for SteamUGCDetails_t

source§

fn clone(&self) -> SteamUGCDetails_t

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SteamUGCDetails_t

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for SteamUGCDetails_t

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.