#[non_exhaustive]pub struct GetVodSessionRequest {
pub name: String,
/* private fields */
}Expand description
Request message for VideoStitcherService.getVodSession
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The name of the VOD session to be retrieved, in the form of
projects/{project_number}/locations/{location}/vodSessions/{id}.
Implementations§
Trait Implementations§
Source§impl Clone for GetVodSessionRequest
impl Clone for GetVodSessionRequest
Source§fn clone(&self) -> GetVodSessionRequest
fn clone(&self) -> GetVodSessionRequest
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 moreSource§impl Debug for GetVodSessionRequest
impl Debug for GetVodSessionRequest
Source§impl Default for GetVodSessionRequest
impl Default for GetVodSessionRequest
Source§fn default() -> GetVodSessionRequest
fn default() -> GetVodSessionRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetVodSessionRequest
impl Message for GetVodSessionRequest
Source§impl PartialEq for GetVodSessionRequest
impl PartialEq for GetVodSessionRequest
Source§fn eq(&self, other: &GetVodSessionRequest) -> bool
fn eq(&self, other: &GetVodSessionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetVodSessionRequest
Auto Trait Implementations§
impl Freeze for GetVodSessionRequest
impl RefUnwindSafe for GetVodSessionRequest
impl Send for GetVodSessionRequest
impl Sync for GetVodSessionRequest
impl Unpin for GetVodSessionRequest
impl UnsafeUnpin for GetVodSessionRequest
impl UnwindSafe for GetVodSessionRequest
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