pub struct SteamFileInfo {
pub name: String,
pub size: u64,
}Expand description
Name and size information about a file in the steam cloud
Fields§
§name: StringThe file name
size: u64The size of the file in bytes
Trait Implementations§
Source§impl Clone for SteamFileInfo
impl Clone for SteamFileInfo
Source§fn clone(&self) -> SteamFileInfo
fn clone(&self) -> SteamFileInfo
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SteamFileInfo
impl RefUnwindSafe for SteamFileInfo
impl Send for SteamFileInfo
impl Sync for SteamFileInfo
impl Unpin for SteamFileInfo
impl UnwindSafe for SteamFileInfo
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