pub struct MediaSyncResponse {
pub files: Vec<MediaEntry>,
pub timestamp: i64,
}Expand description
Media sync response.
Fields§
§files: Vec<MediaEntry>Media files modified since the given timestamp.
timestamp: i64Latest modification timestamp among returned files.
Trait Implementations§
Source§impl Clone for MediaSyncResponse
impl Clone for MediaSyncResponse
Source§fn clone(&self) -> MediaSyncResponse
fn clone(&self) -> MediaSyncResponse
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 MediaSyncResponse
impl RefUnwindSafe for MediaSyncResponse
impl Send for MediaSyncResponse
impl Sync for MediaSyncResponse
impl Unpin for MediaSyncResponse
impl UnsafeUnpin for MediaSyncResponse
impl UnwindSafe for MediaSyncResponse
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