pub struct VideoListParams {
pub after: Option<String>,
pub limit: Option<i64>,
pub order: Option<VideoListParamsOrder>,
}Fields§
§after: Option<String>Identifier for the last item from the previous pagination request
limit: Option<i64>Number of items to retrieve
order: Option<VideoListParamsOrder>Sort order of results by timestamp.
Trait Implementations§
Source§impl Clone for VideoListParams
impl Clone for VideoListParams
Source§fn clone(&self) -> VideoListParams
fn clone(&self) -> VideoListParams
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 VideoListParams
impl Debug for VideoListParams
Source§impl<'de> Deserialize<'de> for VideoListParams
impl<'de> Deserialize<'de> for VideoListParams
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 VideoListParams
impl RefUnwindSafe for VideoListParams
impl Send for VideoListParams
impl Sync for VideoListParams
impl Unpin for VideoListParams
impl UnsafeUnpin for VideoListParams
impl UnwindSafe for VideoListParams
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