twilight_http/request/scheduled_event/
get_guild_scheduled_events.rsuse crate::{
client::Client,
error::Error,
request::{Request, TryIntoRequest},
response::{marker::ListBody, Response, ResponseFuture},
routing::Route,
};
use std::future::IntoFuture;
use twilight_model::{
guild::scheduled_event::GuildScheduledEvent,
id::{marker::GuildMarker, Id},
};
#[must_use = "requests must be configured and executed"]
pub struct GetGuildScheduledEvents<'a> {
guild_id: Id<GuildMarker>,
http: &'a Client,
with_user_count: bool,
}
impl<'a> GetGuildScheduledEvents<'a> {
pub(crate) const fn new(http: &'a Client, guild_id: Id<GuildMarker>) -> Self {
Self {
guild_id,
http,
with_user_count: false,
}
}
pub const fn with_user_count(mut self, with_user_count: bool) -> Self {
self.with_user_count = with_user_count;
self
}
}
impl IntoFuture for GetGuildScheduledEvents<'_> {
type Output = Result<Response<ListBody<GuildScheduledEvent>>, Error>;
type IntoFuture = ResponseFuture<ListBody<GuildScheduledEvent>>;
fn into_future(self) -> Self::IntoFuture {
let http = self.http;
match self.try_into_request() {
Ok(request) => http.request(request),
Err(source) => ResponseFuture::error(source),
}
}
}
impl TryIntoRequest for GetGuildScheduledEvents<'_> {
fn try_into_request(self) -> Result<Request, Error> {
Ok(Request::from_route(&Route::GetGuildScheduledEvents {
guild_id: self.guild_id.get(),
with_user_count: self.with_user_count,
}))
}
}