Struct twilight_http::request::template::create_guild_from_template::CreateGuildFromTemplate [−][src]
pub struct CreateGuildFromTemplate<'a> { /* fields omitted */ }Expand description
Create a new guild based on a template.
This endpoint can only be used by bots in less than 10 guilds.
Errors
Returns a CreateGuildFromTemplateErrorType::NameInvalid error type if
the name is invalid.
Implementations
Set the icon.
This must be a Data URI, in the form of data:image/{type};base64,{data} where {type} is
the image MIME type and {data} is the base64-encoded image. Refer to the discord docs
for more information.
pub fn exec(self) -> ResponseFuture<Guild>ⓘNotable traits for ResponseFuture<T>impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;
pub fn exec(self) -> ResponseFuture<Guild>ⓘNotable traits for ResponseFuture<T>impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;
Notable traits for ResponseFuture<T>
impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;Execute the request, returning a future resolving to a Response.