#[non_exhaustive]pub struct RemoveChannelVipRequest<'a> {
pub broadcaster_id: Cow<'a, UserIdRef>,
pub user_id: Cow<'a, UserIdRef>,
}
Available on crate feature
helix
only.Expand description
Query Parameters for Remove Channel VIP
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>
The ID of the broadcaster that’s removing VIP status from the user.
user_id: Cow<'a, UserIdRef>
The ID of the user to remove as a VIP from the broadcaster’s chat room.
Implementations§
Source§impl<'a> RemoveChannelVipRequest<'a>
impl<'a> RemoveChannelVipRequest<'a>
Source§impl<'a> RemoveChannelVipRequest<'a>
impl<'a> RemoveChannelVipRequest<'a>
Trait Implementations§
Source§impl<'a> Clone for RemoveChannelVipRequest<'a>
impl<'a> Clone for RemoveChannelVipRequest<'a>
Source§fn clone(&self) -> RemoveChannelVipRequest<'a>
fn clone(&self) -> RemoveChannelVipRequest<'a>
Returns a copy 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 RemoveChannelVipRequest<'a>
impl<'a> Debug for RemoveChannelVipRequest<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for RemoveChannelVipRequest<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RemoveChannelVipRequest<'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 RemoveChannelVipRequest<'a>
impl<'a> PartialEq for RemoveChannelVipRequest<'a>
Source§impl Request for RemoveChannelVipRequest<'_>
impl Request for RemoveChannelVipRequest<'_>
Source§const PATH: &'static str = "channels/vips"
const PATH: &'static str = "channels/vips"
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 = RemoveChannelVipResponse
type Response = RemoveChannelVipResponse
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 RequestDelete for RemoveChannelVipRequest<'_>
impl RequestDelete for RemoveChannelVipRequest<'_>
Source§fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode,
) -> Result<Response<Self, Self::Response>, HelixRequestDeleteError>where
Self: Sized,
fn parse_inner_response(
request: Option<Self>,
uri: &Uri,
response: &str,
status: StatusCode,
) -> Result<Response<Self, Self::Response>, HelixRequestDeleteError>where
Self: Sized,
Parse a response string into the response.
Source§fn create_request(
&self,
token: &str,
client_id: &str,
) -> Result<Request<Bytes>, CreateRequestError>
fn create_request( &self, token: &str, client_id: &str, ) -> Result<Request<Bytes>, CreateRequestError>
Create a
http::Request
from this Request
in your clientSource§impl<'a> Serialize for RemoveChannelVipRequest<'a>
impl<'a> Serialize for RemoveChannelVipRequest<'a>
impl<'a> Eq for RemoveChannelVipRequest<'a>
impl<'a> StructuralPartialEq for RemoveChannelVipRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for RemoveChannelVipRequest<'a>
impl<'a> RefUnwindSafe for RemoveChannelVipRequest<'a>
impl<'a> Send for RemoveChannelVipRequest<'a>
impl<'a> Sync for RemoveChannelVipRequest<'a>
impl<'a> Unpin for RemoveChannelVipRequest<'a>
impl<'a> UnwindSafe for RemoveChannelVipRequest<'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