pub struct GetClipsResponse {
pub clips: Vec<ClipInfo>,
pub pagination: Pagination,
}
Expand description
Response container from the Get Clips endpoint
Fields§
§clips: Vec<ClipInfo>
§pagination: Pagination
The inner may be empty, indicating that there was not more than the value passed to GetClipsRequest::set_count
Trait Implementations§
Source§impl Debug for GetClipsResponse
impl Debug for GetClipsResponse
Source§impl<'de> Deserialize<'de> for GetClipsResponse
impl<'de> Deserialize<'de> for GetClipsResponse
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 GetClipsResponse
impl RefUnwindSafe for GetClipsResponse
impl Send for GetClipsResponse
impl Sync for GetClipsResponse
impl Unpin for GetClipsResponse
impl UnwindSafe for GetClipsResponse
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