pub struct RtmpListParams {
pub page: Option<u32>,
pub per_page: Option<u32>,
pub cursor: Option<String>,
pub room_id: Option<String>,
pub session_id: Option<String>,
pub user_id: Option<String>,
pub query: Option<String>,
}Expand description
The query parameters for RtmpResource::list.
Fields§
§page: Option<u32>The 1-based page number.
per_page: Option<u32>Items per page.
cursor: Option<String>An opaque cursor from a previous page.
room_id: Option<String>Filters by room id.
session_id: Option<String>Filters by session id.
user_id: Option<String>Scopes to a specific user. Admin tokens only.
query: Option<String>Matches the room’s meeting id.
Trait Implementations§
Source§impl Clone for RtmpListParams
impl Clone for RtmpListParams
Source§fn clone(&self) -> RtmpListParams
fn clone(&self) -> RtmpListParams
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 RtmpListParams
impl Debug for RtmpListParams
Source§impl Default for RtmpListParams
impl Default for RtmpListParams
Source§fn default() -> RtmpListParams
fn default() -> RtmpListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RtmpListParams
impl RefUnwindSafe for RtmpListParams
impl Send for RtmpListParams
impl Sync for RtmpListParams
impl Unpin for RtmpListParams
impl UnsafeUnpin for RtmpListParams
impl UnwindSafe for RtmpListParams
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