Struct steamworks_sys::RemoteStorageGetPublishedFileDetailsResult_t[][src]

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

Fields

m_eResult: EResultm_nPublishedFileId: PublishedFileId_tm_nCreatorAppID: AppId_tm_nConsumerAppID: AppId_tm_rgchTitle: [c_char; 129]m_rgchDescription: [c_char; 8000]m_hFile: UGCHandle_tm_hPreviewFile: UGCHandle_tm_ulSteamIDOwner: uint64m_rtimeCreated: uint32m_rtimeUpdated: uint32m_eVisibility: ERemoteStoragePublishedFileVisibilitym_bBanned: boolm_rgchTags: [c_char; 1025]m_bTagsTruncated: boolm_pchFileName: [c_char; 260]m_nFileSize: int32m_nPreviewFileSize: int32m_rgchURL: [c_char; 256]m_eFileType: EWorkshopFileTypem_bAcceptedForUse: bool

Trait Implementations

impl Clone for RemoteStorageGetPublishedFileDetailsResult_t[src]

impl Copy for RemoteStorageGetPublishedFileDetailsResult_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.