Struct twitch_api2::helix::streams::GetStreamsRequest [−][src]
#[non_exhaustive]pub struct GetStreamsRequest { pub after: Option<Cursor>, pub before: Option<Cursor>, pub first: Option<usize>, pub game_id: Vec<CategoryId>, pub language: Option<String>, pub user_id: Vec<UserId>, pub user_login: Vec<UserName>, }
helix
only.Query Parameters for Get Streams
Fields (Non-exhaustive)
Struct {{ .. }}
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.after: Option<Cursor>
Cursor for forward pagination: tells the server where to start fetching the next set of results, in a multi-page response. The cursor value specified here is from the pagination response field of a prior query.
before: Option<Cursor>
Cursor for backward pagination: tells the server where to start fetching the next set of results, in a multi-page response. The cursor value specified here is from the pagination response field of a prior query.
first: Option<usize>
Maximum number of objects to return. Maximum: 100. Default: 20.
game_id: Vec<CategoryId>
Returns streams broadcasting a specified game ID. You can specify up to 10 IDs.
language: Option<String>
Stream language. You can specify up to 100 languages.
user_id: Vec<UserId>
Returns streams broadcast by one or more specified user IDs. You can specify up to 100 IDs.
user_login: Vec<UserName>
Returns streams broadcast by one or more specified user login names. You can specify up to 100 names.
Implementations
impl GetStreamsRequest
[src]
impl GetStreamsRequest
[src]pub fn builder() -> GetStreamsRequestBuilder<((), (), (), (), (), (), ())>
[src]
pub fn builder() -> GetStreamsRequestBuilder<((), (), (), (), (), (), ())>
[src]Create a builder for building GetStreamsRequest
.
On the builder, call .after(...)
(optional), .before(...)
(optional), .first(...)
(optional), .game_id(...)
(optional), .language(...)
(optional), .user_id(...)
(optional), .user_login(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of GetStreamsRequest
.
Trait Implementations
impl Clone for GetStreamsRequest
[src]
impl Clone for GetStreamsRequest
[src]fn clone(&self) -> GetStreamsRequest
[src]
fn clone(&self) -> GetStreamsRequest
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for GetStreamsRequest
[src]
impl Debug for GetStreamsRequest
[src]impl<'de> Deserialize<'de> for GetStreamsRequest
[src]
impl<'de> Deserialize<'de> for GetStreamsRequest
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Paginated for GetStreamsRequest
[src]
impl Paginated for GetStreamsRequest
[src]fn set_pagination(&mut self, cursor: Option<Cursor>)
[src]
fn set_pagination(&mut self, cursor: Option<Cursor>)
[src]Should returns the current pagination cursor. Read more
impl PartialEq<GetStreamsRequest> for GetStreamsRequest
[src]
impl PartialEq<GetStreamsRequest> for GetStreamsRequest
[src]fn eq(&self, other: &GetStreamsRequest) -> bool
[src]
fn eq(&self, other: &GetStreamsRequest) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &GetStreamsRequest) -> bool
[src]
fn ne(&self, other: &GetStreamsRequest) -> bool
[src]This method tests for !=
.
impl Request for GetStreamsRequest
[src]
impl Request for GetStreamsRequest
[src]const PATH: &'static str
[src]
const PATH: &'static str
[src]The path to the endpoint relative to the helix root. eg. channels
for Get Channel Information
const SCOPE: &'static [Scope]
[src]
const SCOPE: &'static [Scope]
[src]Scopes needed by this endpoint
const OPT_SCOPE: &'static [Scope]
[src]
const OPT_SCOPE: &'static [Scope]
[src]Optional scopes needed by this endpoint
fn get_uri(&self) -> Result<Uri, InvalidUri>
[src]
fn get_uri(&self) -> Result<Uri, InvalidUri>
[src]Returns full URI for the request, including query parameters.
fn get_bare_uri() -> Result<Uri, InvalidUri>
[src]
fn get_bare_uri() -> Result<Uri, InvalidUri>
[src]Returns bare URI for the request, NOT including query parameters.
impl RequestGet for GetStreamsRequest
[src]
impl RequestGet for GetStreamsRequest
[src]fn create_request(
&self,
token: &str,
client_id: &str
) -> Result<Request<Vec<u8>>, CreateRequestError>
[src]
fn create_request(
&self,
token: &str,
client_id: &str
) -> Result<Request<Vec<u8>>, CreateRequestError>
[src]Create a http::Request
from this Request
in your client
fn parse_response(
request: Option<Self>,
uri: &Uri,
response: Response<Vec<u8>>
) -> Result<Response<Self, Self::Response>, HelixRequestGetError> where
Self: Sized,
[src]
fn parse_response(
request: Option<Self>,
uri: &Uri,
response: Response<Vec<u8>>
) -> Result<Response<Self, Self::Response>, HelixRequestGetError> where
Self: Sized,
[src]Parse response. Read more
fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode
) -> Result<Response<Self, Self::Response>, HelixRequestGetError> where
Self: Sized,
[src]
fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode
) -> Result<Response<Self, Self::Response>, HelixRequestGetError> where
Self: Sized,
[src]Parse a response string into the response.
impl Serialize for GetStreamsRequest
[src]
impl Serialize for GetStreamsRequest
[src]impl StructuralPartialEq for GetStreamsRequest
[src]
Auto Trait Implementations
impl RefUnwindSafe for GetStreamsRequest
impl Send for GetStreamsRequest
impl Sync for GetStreamsRequest
impl Unpin for GetStreamsRequest
impl UnwindSafe for GetStreamsRequest
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> WithSubscriber for T
[src]
impl<T> WithSubscriber for T
[src]fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
fn with_current_subscriber(self) -> WithDispatch<Self>
[src]
fn with_current_subscriber(self) -> WithDispatch<Self>
[src]Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,