Struct google_youtube3::api::VideoRecordingDetails
source · pub struct VideoRecordingDetails {
pub location: Option<GeoPoint>,
pub location_description: Option<String>,
pub recording_date: Option<DateTime<Utc>>,
}
Expand description
Recording information associated with the video.
This type is not used in any activity, and only used as part of another schema.
Fields§
§location: Option<GeoPoint>
The geolocation information associated with the video.
location_description: Option<String>
The text description of the location where the video was recorded.
recording_date: Option<DateTime<Utc>>
The date and time when the video was recorded.
Trait Implementations§
source§impl Clone for VideoRecordingDetails
impl Clone for VideoRecordingDetails
source§fn clone(&self) -> VideoRecordingDetails
fn clone(&self) -> VideoRecordingDetails
Returns a copy 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 VideoRecordingDetails
impl Debug for VideoRecordingDetails
source§impl Default for VideoRecordingDetails
impl Default for VideoRecordingDetails
source§fn default() -> VideoRecordingDetails
fn default() -> VideoRecordingDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for VideoRecordingDetails
impl<'de> Deserialize<'de> for VideoRecordingDetails
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
source§impl Serialize for VideoRecordingDetails
impl Serialize for VideoRecordingDetails
impl Part for VideoRecordingDetails
Auto Trait Implementations§
impl RefUnwindSafe for VideoRecordingDetails
impl Send for VideoRecordingDetails
impl Sync for VideoRecordingDetails
impl Unpin for VideoRecordingDetails
impl UnwindSafe for VideoRecordingDetails
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