pub struct ContentDetails {
pub video_id: String,
pub start_at: String,
pub end_at: String,
pub note: String,
pub video_published_at: Option<DateTime<Utc>>,
}Fields§
§video_id: String§start_at: String§end_at: String§note: String§video_published_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for ContentDetails
impl Clone for ContentDetails
Source§fn clone(&self) -> ContentDetails
fn clone(&self) -> ContentDetails
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 ContentDetails
impl Debug for ContentDetails
Source§impl<'de> Deserialize<'de> for ContentDetails
impl<'de> Deserialize<'de> for ContentDetails
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 ContentDetails
impl RefUnwindSafe for ContentDetails
impl Send for ContentDetails
impl Sync for ContentDetails
impl Unpin for ContentDetails
impl UnwindSafe for ContentDetails
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