pub struct ResumePoint {
pub fully_played: bool,
pub resume_position_ms: u64,
}Expand description
Resume point for podcasts/audiobooks.
Fields§
§fully_played: boolWhether playback has been fully completed.
resume_position_ms: u64Position in milliseconds where playback was paused.
Trait Implementations§
Source§impl Clone for ResumePoint
impl Clone for ResumePoint
Source§fn clone(&self) -> ResumePoint
fn clone(&self) -> ResumePoint
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 ResumePoint
impl Debug for ResumePoint
Source§impl<'de> Deserialize<'de> for ResumePoint
impl<'de> Deserialize<'de> for ResumePoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResumePoint
impl RefUnwindSafe for ResumePoint
impl Send for ResumePoint
impl Sync for ResumePoint
impl Unpin for ResumePoint
impl UnwindSafe for ResumePoint
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