pub struct MediaEntry {
pub filename: String,
pub last_modified: i64,
}Expand description
Media file entry.
Fields§
§filename: StringFilename within the media directory.
last_modified: i64Last modified timestamp (millis since epoch).
Trait Implementations§
Source§impl Clone for MediaEntry
impl Clone for MediaEntry
Source§fn clone(&self) -> MediaEntry
fn clone(&self) -> MediaEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MediaEntry
impl RefUnwindSafe for MediaEntry
impl Send for MediaEntry
impl Sync for MediaEntry
impl Unpin for MediaEntry
impl UnsafeUnpin for MediaEntry
impl UnwindSafe for MediaEntry
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