Struct steamworks_sys::SteamUGCDetails_t[][src]

#[repr(C, packed(4))]pub struct SteamUGCDetails_t {
    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_tm_eResult: EResultm_eFileType: EWorkshopFileTypem_nCreatorAppID: AppId_tm_nConsumerAppID: AppId_tm_rgchTitle: [c_char; 129]m_rgchDescription: [c_char; 8000]m_ulSteamIDOwner: uint64m_rtimeCreated: uint32m_rtimeUpdated: uint32m_rtimeAddedToUserList: uint32m_eVisibility: ERemoteStoragePublishedFileVisibilitym_bBanned: boolm_bAcceptedForUse: boolm_bTagsTruncated: boolm_rgchTags: [c_char; 1025]m_hFile: UGCHandle_tm_hPreviewFile: UGCHandle_tm_pchFileName: [c_char; 260]m_nFileSize: int32m_nPreviewFileSize: int32m_rgchURL: [c_char; 256]m_unVotesUp: uint32m_unVotesDown: uint32m_flScore: f32m_unNumChildren: uint32

Trait Implementations

impl Clone for SteamUGCDetails_t[src]

impl Copy for SteamUGCDetails_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.