#[repr(C)]pub struct SDL_PathInfo {
pub type: SDL_PathType,
pub size: Uint64,
pub create_time: SDL_Time,
pub modify_time: SDL_Time,
pub access_time: SDL_Time,
}
Expand description
Fields§
§type: SDL_PathType
the path type
size: Uint64
the file size in bytes
create_time: SDL_Time
the time when the path was created
modify_time: SDL_Time
the last time the path was modified
access_time: SDL_Time
the last time the path was read
Trait Implementations§
Source§impl Clone for SDL_PathInfo
impl Clone for SDL_PathInfo
Source§fn clone(&self) -> SDL_PathInfo
fn clone(&self) -> SDL_PathInfo
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 moreSource§impl Debug for SDL_PathInfo
impl Debug for SDL_PathInfo
Source§impl Default for SDL_PathInfo
impl Default for SDL_PathInfo
Source§fn default() -> SDL_PathInfo
fn default() -> SDL_PathInfo
Returns the “default value” for a type. Read more
Source§impl Hash for SDL_PathInfo
impl Hash for SDL_PathInfo
Source§impl PartialEq for SDL_PathInfo
impl PartialEq for SDL_PathInfo
impl Copy for SDL_PathInfo
impl Eq for SDL_PathInfo
impl StructuralPartialEq for SDL_PathInfo
Auto Trait Implementations§
impl Freeze for SDL_PathInfo
impl RefUnwindSafe for SDL_PathInfo
impl Send for SDL_PathInfo
impl Sync for SDL_PathInfo
impl Unpin for SDL_PathInfo
impl UnwindSafe for SDL_PathInfo
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