#[non_exhaustive]pub struct UpdateCustomRewardRequest<'a> {
pub broadcaster_id: Cow<'a, UserIdRef>,
pub id: Cow<'a, RewardIdRef>,
}
Available on crate feature
helix
only.Expand description
Query Parameters for Update Custom Rewards
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.broadcaster_id: Cow<'a, UserIdRef>
Provided broadcaster_id must match the user_id in the auth token
id: Cow<'a, RewardIdRef>
ID of the Custom Reward to update, must match a Custom Reward on broadcaster_id’s channel.
Implementations§
Source§impl<'a> UpdateCustomRewardRequest<'a>
impl<'a> UpdateCustomRewardRequest<'a>
Source§impl<'a> UpdateCustomRewardRequest<'a>
impl<'a> UpdateCustomRewardRequest<'a>
Trait Implementations§
Source§impl<'a> Clone for UpdateCustomRewardRequest<'a>
impl<'a> Clone for UpdateCustomRewardRequest<'a>
Source§fn clone(&self) -> UpdateCustomRewardRequest<'a>
fn clone(&self) -> UpdateCustomRewardRequest<'a>
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<'a> Debug for UpdateCustomRewardRequest<'a>
impl<'a> Debug for UpdateCustomRewardRequest<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for UpdateCustomRewardRequest<'a>
impl<'de: 'a, 'a> Deserialize<'de> for UpdateCustomRewardRequest<'a>
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
Source§impl<'a> PartialEq for UpdateCustomRewardRequest<'a>
impl<'a> PartialEq for UpdateCustomRewardRequest<'a>
Source§fn eq(&self, other: &UpdateCustomRewardRequest<'a>) -> bool
fn eq(&self, other: &UpdateCustomRewardRequest<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Request for UpdateCustomRewardRequest<'_>
impl Request for UpdateCustomRewardRequest<'_>
Source§const PATH: &'static str = "channel_points/custom_rewards"
const PATH: &'static str = "channel_points/custom_rewards"
The path to the endpoint relative to the helix root. eg.
channels
for Get Channel InformationSource§const SCOPE: Validator
const SCOPE: Validator
Available on crate feature
twitch_oauth2
only.Scopes needed for this endpoint
Source§type Response = UpdateCustomReward
type Response = UpdateCustomReward
Response type. twitch’s response will deserialize to this.
Source§const OPT_SCOPE: &'static [Scope] = _
const OPT_SCOPE: &'static [Scope] = _
Available on crate feature
twitch_oauth2
only.Optional scopes needed by this endpoint
Source§fn get_uri(&self) -> Result<Uri, InvalidUri>
fn get_uri(&self) -> Result<Uri, InvalidUri>
Returns full URI for the request, including query parameters.
Source§fn get_bare_uri() -> Result<Uri, InvalidUri>
fn get_bare_uri() -> Result<Uri, InvalidUri>
Returns bare URI for the request, NOT including query parameters.
Source§impl<'a> RequestPatch for UpdateCustomRewardRequest<'a>
impl<'a> RequestPatch for UpdateCustomRewardRequest<'a>
Source§type Body = UpdateCustomRewardBody<'a>
type Body = UpdateCustomRewardBody<'a>
Body parameters
Source§fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode,
) -> Result<Response<Self, Self::Response>, HelixRequestPatchError>where
Self: Sized,
fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode,
) -> Result<Response<Self, Self::Response>, HelixRequestPatchError>where
Self: Sized,
Parse a response string into the response.
Source§fn create_request(
&self,
body: Self::Body,
token: &str,
client_id: &str,
) -> Result<Request<Bytes>, CreateRequestError>
fn create_request( &self, body: Self::Body, token: &str, client_id: &str, ) -> Result<Request<Bytes>, CreateRequestError>
Create a
http::Request
from this Request
in your clientSource§impl<'a> Serialize for UpdateCustomRewardRequest<'a>
impl<'a> Serialize for UpdateCustomRewardRequest<'a>
impl<'a> Eq for UpdateCustomRewardRequest<'a>
impl<'a> StructuralPartialEq for UpdateCustomRewardRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for UpdateCustomRewardRequest<'a>
impl<'a> RefUnwindSafe for UpdateCustomRewardRequest<'a>
impl<'a> Send for UpdateCustomRewardRequest<'a>
impl<'a> Sync for UpdateCustomRewardRequest<'a>
impl<'a> Unpin for UpdateCustomRewardRequest<'a>
impl<'a> UnwindSafe for UpdateCustomRewardRequest<'a>
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