[][src]Struct serenity::model::guild::Guild

pub struct Guild {
    pub afk_channel_id: Option<ChannelId>,
    pub afk_timeout: u64,
    pub application_id: Option<ApplicationId>,
    pub channels: HashMap<ChannelId, Arc<RwLock<GuildChannel>>>,
    pub default_message_notifications: DefaultMessageNotificationLevel,
    pub emojis: HashMap<EmojiId, Emoji>,
    pub explicit_content_filter: ExplicitContentFilter,
    pub features: Vec<String>,
    pub icon: Option<String>,
    pub id: GuildId,
    pub joined_at: DateTime<FixedOffset>,
    pub large: bool,
    pub member_count: u64,
    pub members: HashMap<UserId, Member>,
    pub mfa_level: MfaLevel,
    pub name: String,
    pub owner_id: UserId,
    pub presences: HashMap<UserId, Presence>,
    pub region: String,
    pub roles: HashMap<RoleId, Role>,
    pub splash: Option<String>,
    pub system_channel_id: Option<ChannelId>,
    pub verification_level: VerificationLevel,
    pub voice_states: HashMap<UserId, VoiceState>,
    pub description: Option<String>,
    pub premium_tier: PremiumTier,
    pub premium_subscription_count: u64,
    pub banner: Option<String>,
    pub vanity_url_code: Option<String>,
    pub preferred_locale: String,
    // some fields omitted
}

Information about a Discord guild, such as channels, emojis, etc.

Fields

afk_channel_id: Option<ChannelId>

Id of a voice channel that's considered the AFK channel.

afk_timeout: u64

The amount of seconds a user can not show any activity in a voice channel before being moved to an AFK channel -- if one exists.

application_id: Option<ApplicationId>

Application ID of the guild creator if it is bot-created.

channels: HashMap<ChannelId, Arc<RwLock<GuildChannel>>>

All voice and text channels contained within a guild.

This contains all channels regardless of permissions (i.e. the ability of the bot to read from or connect to them).

default_message_notifications: DefaultMessageNotificationLevel

Indicator of whether notifications for all messages are enabled by default in the guild.

emojis: HashMap<EmojiId, Emoji>

All of the guild's custom emojis.

explicit_content_filter: ExplicitContentFilter

Default explicit content filter level.

features: Vec<String>

VIP features enabled for the guild. Can be obtained through the Discord Partnership website.

The following is a list of known features:

  • INVITE_SPLASH
  • VANITY_URL
  • VERIFIED
  • VIP_REGIONS
icon: Option<String>

The hash of the icon used by the guild.

In the client, this appears on the guild list on the left-hand side.

id: GuildId

The unique Id identifying the guild.

This is equivilant to the Id of the default role (@everyone) and also that of the default channel (typically #general).

joined_at: DateTime<FixedOffset>

The date that the current user joined the guild.

large: bool

Indicator of whether the guild is considered "large" by Discord.

member_count: u64

The number of members in the guild.

members: HashMap<UserId, Member>

Users who are members of the guild.

Members might not all be available when the ReadyEvent is received if the member_count is greater than the LARGE_THRESHOLD set by the library.

mfa_level: MfaLevel

Indicator of whether the guild requires multi-factor authentication for Roles or Users with moderation permissions.

name: String

The name of the guild.

owner_id: UserId

The Id of the User who owns the guild.

presences: HashMap<UserId, Presence>

A mapping of Users' Ids to their current presences.

region: String

The region that the voice servers that the guild uses are located in.

roles: HashMap<RoleId, Role>

A mapping of the guild's roles.

splash: Option<String>

An identifying hash of the guild's splash icon.

If the ["InviteSplash"] feature is enabled, this can be used to generate a URL to a splash image.

system_channel_id: Option<ChannelId>

The ID of the channel to which system messages are sent.

verification_level: VerificationLevel

Indicator of the current verification level of the guild.

voice_states: HashMap<UserId, VoiceState>

A mapping of Users to their current voice state.

description: Option<String>

The server's description

premium_tier: PremiumTier

The server's premium boosting level.

premium_subscription_count: u64

The total number of users currently boosting this server.

banner: Option<String>

The server's banner.

vanity_url_code: Option<String>

The vanity url code for the guild.

preferred_locale: String

The preferred locale of this guild only set if guild has the "DISCOVERABLE" feature, defaults to en-US.

Implementations

impl Guild[src]

pub fn default_channel(&self, uid: UserId) -> Option<Arc<RwLock<GuildChannel>>>[src]

Returns the "default" channel of the guild for the passed user id. (This returns the first channel that can be read by the user, if there isn't one, returns None)

pub fn default_channel_guaranteed(&self) -> Option<Arc<RwLock<GuildChannel>>>[src]

Returns the guaranteed "default" channel of the guild. (This returns the first channel that can be read by everyone, if there isn't one, returns None) Note however that this is very costy if used in a server with lots of channels, members, or both.

pub fn channel_id_from_name(
    &self,
    cache: impl AsRef<CacheRwLock>,
    name: impl AsRef<str>
) -> Option<ChannelId>
[src]

pub fn ban<U: Into<UserId>, BO: BanOptions>(
    &self,
    cache_http: impl CacheHttp,
    user: U,
    options: &BO
) -> Result<()>
[src]

Ban a User from the guild. All messages by the user within the last given number of days given will be deleted.

Refer to the documentation for Guild::ban for more information.

Note: Requires the Ban Members permission.

Examples

Ban a member and remove all messages they've sent in the last 4 days:

This example is not tested
// assumes a `user` and `guild` have already been bound
let _ = guild.ban(user, 4);

Errors

Returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

Returns a ModelError::DeleteMessageDaysAmount if the number of days' worth of messages to delete is over the maximum.

pub fn bans(&self, cache_http: impl CacheHttp) -> Result<Vec<Ban>>[src]

Retrieves a list of Bans for the guild.

Note: Requires the Ban Members permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn audit_logs(
    &self,
    http: impl AsRef<Http>,
    action_type: Option<u8>,
    user_id: Option<UserId>,
    before: Option<AuditLogEntryId>,
    limit: Option<u8>
) -> Result<AuditLogs>
[src]

Retrieves a list of AuditLogs for the guild.

pub fn channels(
    &self,
    http: impl AsRef<Http>
) -> Result<HashMap<ChannelId, GuildChannel>>
[src]

Gets all of the guild's channels over the REST API.

pub fn create(
    http: impl AsRef<Http>,
    name: &str,
    region: Region,
    icon: Option<&str>
) -> Result<PartialGuild>
[src]

Creates a guild with the data provided.

Only a PartialGuild will be immediately returned, and a full Guild will be received over a Shard.

Note: This endpoint is usually only available for user accounts. Refer to Discord's information for the endpoint here for more information. If you require this as a bot, re-think what you are doing and if it really needs to be doing this.

Examples

Create a guild called "test" in the US West region with no icon:

This example is not tested
use serenity::model::{Guild, Region};

let _guild = Guild::create_guild("test", Region::UsWest, None);

pub fn create_channel(
    &self,
    cache_http: impl CacheHttp,
    f: impl FnOnce(&mut CreateChannel) -> &mut CreateChannel
) -> Result<GuildChannel>
[src]

Creates a new Channel in the guild.

Note: Requires the Manage Channels permission.

Examples

This example is not tested
use serenity::model::ChannelType;

// assuming a `guild` has already been bound

let _ = guild.create_channel(|c| c.name("my-test-channel").kind(ChannelType::Text));

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn create_emoji(
    &self,
    http: impl AsRef<Http>,
    name: &str,
    image: &str
) -> Result<Emoji>
[src]

Creates an emoji in the guild with a name and base64-encoded image. The utils::read_image function is provided for you as a simple method to read an image and encode it into base64, if you are reading from the filesystem.

The name of the emoji must be at least 2 characters long and can only contain alphanumeric characters and underscores.

Requires the Manage Emojis permission.

Examples

See the EditProfile::avatar example for an in-depth example as to how to read an image from the filesystem and encode it as base64. Most of the example can be applied similarly for this method.

pub fn create_integration<I>(
    &self,
    http: impl AsRef<Http>,
    integration_id: I,
    kind: &str
) -> Result<()> where
    I: Into<IntegrationId>, 
[src]

Creates an integration for the guild.

Requires the Manage Guild permission.

pub fn create_role<F>(&self, cache_http: impl CacheHttp, f: F) -> Result<Role> where
    F: FnOnce(&mut EditRole) -> &mut EditRole
[src]

Creates a new role in the guild with the data set, if any.

Note: Requires the Manage Roles permission.

Examples

Create a role which can be mentioned, with the name 'test':

This example is not tested
// assuming a `guild` has been bound

let role = guild.create_role(|r| r.hoist(true).name("role"));

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn delete(&self, cache_http: impl CacheHttp) -> Result<PartialGuild>[src]

Deletes the current guild if the current user is the owner of the guild.

Note: Requires the current user to be the owner of the guild.

Errors

If the cache is enabled, then returns a ModelError::InvalidUser if the current user is not the guild owner.

pub fn delete_emoji<E: Into<EmojiId>>(
    &self,
    http: impl AsRef<Http>,
    emoji_id: E
) -> Result<()>
[src]

Deletes an Emoji from the guild.

Requires the Manage Emojis permission.

pub fn delete_integration<I: Into<IntegrationId>>(
    &self,
    http: impl AsRef<Http>,
    integration_id: I
) -> Result<()>
[src]

Deletes an integration by Id from the guild.

Requires the Manage Guild permission.

pub fn delete_role<R: Into<RoleId>>(
    &self,
    http: impl AsRef<Http>,
    role_id: R
) -> Result<()>
[src]

Deletes a Role by Id from the guild.

Also see Role::delete if you have the cache and methods features enabled.

Requires the Manage Roles permission.

pub fn edit<F>(&mut self, cache_http: impl CacheHttp, f: F) -> Result<()> where
    F: FnOnce(&mut EditGuild) -> &mut EditGuild
[src]

Edits the current guild with new data where specified.

Refer to EditGuild's documentation for a full list of methods.

Note: Requires the current user to have the Manage Guild permission.

Examples

Change a guild's icon using a file name "icon.png":

This example is not tested
use serenity::utils;

// We are using read_image helper function from utils.
let base64_icon = utils::read_image("./icon.png")
    .expect("Failed to read image");

guild.edit(|g| g.icon(base64_icon));

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn edit_emoji<E: Into<EmojiId>>(
    &self,
    http: impl AsRef<Http>,
    emoji_id: E,
    name: &str
) -> Result<Emoji>
[src]

Edits an Emoji's name in the guild.

Also see Emoji::edit if you have the cache and methods features enabled.

Requires the Manage Emojis permission.

pub fn edit_member<F, U>(
    &self,
    http: impl AsRef<Http>,
    user_id: U,
    f: F
) -> Result<()> where
    F: FnOnce(&mut EditMember) -> &mut EditMember,
    U: Into<UserId>, 
[src]

Edits the properties of member of the guild, such as muting or nicknaming them.

Refer to EditMember's documentation for a full list of methods and permission restrictions.

Examples

Mute a member and set their roles to just one role with a predefined Id:

This example is not tested
guild.edit_member(user_id, |m| m.mute(true).roles(&vec![role_id]));

pub fn edit_nickname(
    &self,
    cache_http: impl CacheHttp,
    new_nickname: Option<&str>
) -> Result<()>
[src]

Edits the current user's nickname for the guild.

Pass None to reset the nickname.

Note: Requires the Change Nickname permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to change their own nickname.

pub fn edit_role<F, R>(
    &self,
    http: impl AsRef<Http>,
    role_id: R,
    f: F
) -> Result<Role> where
    F: FnOnce(&mut EditRole) -> &mut EditRole,
    R: Into<RoleId>, 
[src]

Edits a role, optionally setting its fields.

Requires the Manage Roles permission.

Examples

Make a role hoisted:

This example is not tested
guild.edit_role(&context, RoleId(7), |r| r.hoist(true));

pub fn edit_role_position<R>(
    &self,
    http: impl AsRef<Http>,
    role_id: R,
    position: u64
) -> Result<Vec<Role>> where
    R: Into<RoleId>, 
[src]

Edits the order of Roles Requires the Manage Roles permission.

Examples

Change the order of a role:

This example is not tested
use serenity::model::id::RoleId;
guild.edit_role_position(&context, RoleId(8), 2);

pub fn get<G: Into<GuildId>>(
    http: impl AsRef<Http>,
    guild_id: G
) -> Result<PartialGuild>
[src]

Gets a partial amount of guild data by its Id.

Requires that the current user be in the guild.

pub fn greater_member_hierarchy<T, U>(
    &self,
    cache: impl AsRef<CacheRwLock>,
    lhs_id: T,
    rhs_id: U
) -> Option<UserId> where
    T: Into<UserId>,
    U: Into<UserId>, 
[src]

Returns which of two Users has a higher Member hierarchy.

Hierarchy is essentially who has the Role with the highest position.

Returns None if at least one of the given users' member instances is not present. Returns None if the users have the same hierarchy, as neither are greater than the other.

If both user IDs are the same, None is returned. If one of the users is the guild owner, their ID is returned.

pub fn icon_url(&self) -> Option<String>[src]

Returns the formatted URL of the guild's icon, if one exists.

pub fn integrations(&self, http: impl AsRef<Http>) -> Result<Vec<Integration>>[src]

Gets all integration of the guild.

This performs a request over the REST API.

pub fn invites(&self, cache_http: impl CacheHttp) -> Result<Vec<RichInvite>>[src]

Retrieves the active invites for the guild.

Note: Requires the Manage Guild permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn is_large(&self) -> bool[src]

Checks if the guild is 'large'. A guild is considered large if it has more than 250 members.

pub fn kick<U: Into<UserId>>(
    &self,
    http: impl AsRef<Http>,
    user_id: U
) -> Result<()>
[src]

Kicks a Member from the guild.

Requires the Kick Members permission.

pub fn kick_with_reason<U: Into<UserId>>(
    &self,
    http: impl AsRef<Http>,
    user_id: U,
    reason: &str
) -> Result<()>
[src]

pub fn leave(&self, http: impl AsRef<Http>) -> Result<()>[src]

Leaves the guild.

pub fn member<U: Into<UserId>>(
    &self,
    cache_http: impl CacheHttp,
    user_id: U
) -> Result<Member>
[src]

Gets a user's Member for the guild by Id.

pub fn members<U>(
    &self,
    http: impl AsRef<Http>,
    limit: Option<u64>,
    after: U
) -> Result<Vec<Member>> where
    U: Into<Option<UserId>>, 
[src]

Gets a list of the guild's members.

Optionally pass in the limit to limit the number of results. Maximum value is 1000. Optionally pass in after to offset the results by a User's Id.

pub fn members_with_status(&self, status: OnlineStatus) -> Vec<&Member>[src]

Gets a list of all the members (satisfying the status provided to the function) in this guild.

pub fn member_named(&self, name: &str) -> Option<&Member>[src]

Retrieves the first Member found that matches the name - with an optional discriminator - provided.

Searching with a discriminator given is the most precise form of lookup, as no two people can share the same username and discriminator.

If a member can not be found by username or username#discriminator, then a search will be done for the nickname. When searching by nickname, the hash (#) and everything after it is included in the search.

The following are valid types of searches:

  • username: "zey"
  • username and discriminator: "zey#5479"

pub fn members_starting_with(
    &self,
    prefix: &str,
    case_sensitive: bool,
    sorted: bool
) -> Vec<&Member>
[src]

Retrieves all Member that start with a given String.

sorted decides whether the best early match of the prefix should be the criteria to sort the result. For the prefix "zey" and the unsorted result:

  • "zeya", "zeyaa", "zeyla", "zeyzey", "zeyzeyzey" It would be sorted:
  • "zeya", "zeyaa", "zeyla", "zeyzey", "zeyzeyzey"

pub fn members_containing(
    &self,
    substring: &str,
    case_sensitive: bool,
    sorted: bool
) -> Vec<&Member>
[src]

Retrieves all Member containing a given String as either username or nick, with a priority on username.

If the substring is "yla", following results are possible:

  • "zeyla", "meiyla", "yladenisyla" If 'case_sensitive' is false, the following are not found:
  • "zeYLa", "meiyLa", "LYAdenislyA"

sorted decides whether the best early match of the search-term should be the criteria to sort the result. It will look at the account name first, if that does not fit the search-criteria substring, the display-name will be considered. For the substring "zey" and the unsorted result:

  • "azey", "zey", "zeyla", "zeylaa", "zeyzeyzey" It would be sorted:
  • "zey", "azey", "zeyla", "zeylaa", "zeyzeyzey"

Note: Due to two fields of a Member being candidates for the searched field, setting sorted to true will result in an overhead, as both fields have to be considered again for sorting.

pub fn members_username_containing(
    &self,
    substring: &str,
    case_sensitive: bool,
    sorted: bool
) -> Vec<&Member>
[src]

Retrieves all Member containing a given String in their username.

If the substring is "yla", following results are possible:

  • "zeyla", "meiyla", "yladenisyla" If 'case_sensitive' is false, the following are not found:
  • "zeYLa", "meiyLa", "LYAdenislyA"

sort decides whether the best early match of the search-term should be the criteria to sort the result. For the substring "zey" and the unsorted result:

  • "azey", "zey", "zeyla", "zeylaa", "zeyzeyzey" It would be sorted:
  • "zey", "azey", "zeyla", "zeylaa", "zeyzeyzey"

pub fn members_nick_containing(
    &self,
    substring: &str,
    case_sensitive: bool,
    sorted: bool
) -> Vec<&Member>
[src]

Retrieves all Member containing a given String in their nick.

If the substring is "yla", following results are possible:

  • "zeyla", "meiyla", "yladenisyla" If 'case_sensitive' is false, the following are not found:
  • "zeYLa", "meiyLa", "LYAdenislyA"

sort decides whether the best early match of the search-term should be the criteria to sort the result. For the substring "zey" and the unsorted result:

  • "azey", "zey", "zeyla", "zeylaa", "zeyzeyzey" It would be sorted:
  • "zey", "azey", "zeyla", "zeylaa", "zeyzeyzey"

Note: Instead of panicing, when sorting does not find a nick, the username will be used (this should never happen).

pub fn member_permissions<U>(&self, user_id: U) -> Permissions where
    U: Into<UserId>, 
[src]

Calculate a Member's permissions in the guild.

pub fn move_member<C, U>(
    &self,
    http: impl AsRef<Http>,
    user_id: U,
    channel_id: C
) -> Result<()> where
    C: Into<ChannelId>,
    U: Into<UserId>, 
[src]

Moves a member to a specific voice channel.

Requires the Move Members permission.

pub fn permissions_in<C, U>(&self, channel_id: C, user_id: U) -> Permissions where
    C: Into<ChannelId>,
    U: Into<UserId>, 
[src]

👎 Deprecated since 0.6.4:

Please use user_permissions_in instead.

Calculate a User's permissions in a given channel in the guild.

pub fn user_permissions_in<C, U>(
    &self,
    channel_id: C,
    user_id: U
) -> Permissions where
    C: Into<ChannelId>,
    U: Into<UserId>, 
[src]

Calculate a User's permissions in a given channel in the guild.

pub fn role_permissions_in<C, R>(
    &self,
    channel_id: C,
    role_id: R
) -> Option<Permissions> where
    C: Into<ChannelId>,
    R: Into<RoleId>, 
[src]

Calculate a Role's permissions in a given channel in the guild. Returns None if given role_id cannot be found.

pub fn prune_count(
    &self,
    cache_http: impl CacheHttp,
    days: u16
) -> Result<GuildPrune>
[src]

Retrieves the count of the number of Members that would be pruned with the number of given days.

See the documentation on GuildPrune for more information.

Note: Requires the Kick Members permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn reorder_channels<It>(
    &self,
    http: impl AsRef<Http>,
    channels: It
) -> Result<()> where
    It: IntoIterator<Item = (ChannelId, u64)>, 
[src]

Re-orders the channels of the guild.

Although not required, you should specify all channels' positions, regardless of whether they were updated. Otherwise, positioning can sometimes get weird.

pub fn shard_id(&self, cache: impl AsRef<CacheRwLock>) -> u64[src]

Returns the Id of the shard associated with the guild.

When the cache is enabled this will automatically retrieve the total number of shards.

Note: When the cache is enabled, this function unlocks the cache to retrieve the total number of shards in use. If you already have the total, consider using utils::shard_id.

pub fn splash_url(&self) -> Option<String>[src]

Returns the formatted URL of the guild's splash image, if one exists.

pub fn start_integration_sync<I: Into<IntegrationId>>(
    &self,
    http: impl AsRef<Http>,
    integration_id: I
) -> Result<()>
[src]

Starts an integration sync for the given integration Id.

Requires the Manage Guild permission.

pub fn start_prune(
    &self,
    cache_http: impl CacheHttp,
    days: u16
) -> Result<GuildPrune>
[src]

Starts a prune of Members.

See the documentation on GuildPrune for more information.

Note: Requires the Kick Members permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn unban<U: Into<UserId>>(
    &self,
    cache_http: impl CacheHttp,
    user_id: U
) -> Result<()>
[src]

Unbans the given User from the guild.

Note: Requires the Ban Members permission.

Errors

If the cache is enabled, returns a ModelError::InvalidPermissions if the current user does not have permission to perform bans.

pub fn vanity_url(&self, http: impl AsRef<Http>) -> Result<String>[src]

Retrieve's the guild's vanity URL.

Note: Requires the Manage Guild permission.

pub fn webhooks(&self, http: impl AsRef<Http>) -> Result<Vec<Webhook>>[src]

Retrieves the guild's webhooks.

Note: Requires the Manage Webhooks permission.

pub fn role_by_name(&self, role_name: &str) -> Option<&Role>[src]

Obtain a reference to a role by its name.

Note: If two or more roles have the same name, obtained reference will be one of them.

Examples

Obtain a reference to a Role by its name.

use serenity::model::prelude::*;
use serenity::prelude::*;

struct Handler;

impl EventHandler for Handler {
    fn message(&self, ctx: Context, msg: Message) {
        if let Some(arc) = msg.guild_id.unwrap().to_guild_cached(&ctx.cache) {
            if let Some(role) = arc.read().role_by_name("role_name") {
                println!("{:?}", role);
            }
        }
    }
}

let mut client = Client::new("token", Handler).unwrap();

client.start().unwrap();

Trait Implementations

impl Clone for Guild[src]

impl Debug for Guild[src]

impl<'de> Deserialize<'de> for Guild[src]

impl<'a> From<&'a Guild> for GuildId[src]

pub fn from(live_guild: &Guild) -> GuildId[src]

Gets the Id of Guild.

impl From<Guild> for GuildId[src]

pub fn from(live_guild: Guild) -> GuildId[src]

Gets the Id of Guild.

impl Serialize for Guild[src]

Auto Trait Implementations

impl !RefUnwindSafe for Guild

impl Send for Guild

impl Sync for Guild

impl Unpin for Guild

impl !UnwindSafe for Guild

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any
[src]

impl<T> DebugAny for T where
    T: Any + Debug
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,