pub enum Collection<'c, T: Deref + 'static>{
Owned(Cow<'c, [T]>),
Borrowed(Cow<'c, [&'c T]>),
Ref(Cow<'c, [&'c T::Target]>),
OwnedString(Cow<'c, [String]>),
BorrowedString(Cow<'c, [&'c String]>),
RefStr(Cow<'c, [&'c str]>),
}
Expand description
Generic collection of an abstracted item.
This is used to abstract over the different types of collections that can be used,
such as Vec<T>
, &[T]
, &[&T]
, &[&str]
, etc.
In most cases, you can use the Collection::from
method to create a collection.
§Examples
use twitch_types::{Collection, UserId, UserIdRef};
// A vector of `UserId`s
let c0: Collection<UserId> = Collection::from(vec![UserId::from("1234"), UserId::from("5678")]);
// A vector of `&str`s
let c1: Collection<UserId> = Collection::from(vec!["1234", "5678"]);
// An array of `&str`s
let c2: Collection<UserId> = Collection::from(&["1234", "5678"]);
// A vector of `UserIdRef`s
let c3: Collection<UserId> = Collection::from(vec![
UserIdRef::from_static("1234"),
UserIdRef::from_static("5678"),
]);
assert!([c1, c2, c3].iter().all(|c| *c == c0));
use twitch_types::{Collection, UserId, UserIdRef};
// It's also possible to create a collection from a single item, passing it by reference.
let c0: Collection<UserId> = Collection::from(&"1234");
let id = UserId::from("1234");
let c1: Collection<UserId> = Collection::from(&id);
assert_eq!(c0, c1);
use twitch_types::{Collection, UserId, UserIdRef};
// you can also collect from an iterator
let mut iter = std::iter::from_fn(|| Some(UserId::from("1234"))).take(10);
let c0: Collection<UserId> = iter.collect();
let mut iter = std::iter::from_fn(|| Some(UserIdRef::from_static("1234"))).take(10);
let c1: Collection<UserId> = iter.collect();
let mut iter = std::iter::from_fn(|| Some("1234")).take(10);
let c2: Collection<UserId> = iter.collect();
let mut iter = std::iter::from_fn(|| Some(String::from("1234"))).take(10);
let c3: Collection<UserId> = iter.collect();
assert!([c1, c2, c3].iter().all(|c| *c == c0));
Variants§
Owned(Cow<'c, [T]>)
A collection over owned items
Borrowed(Cow<'c, [&'c T]>)
A collection over borrowed items
Ref(Cow<'c, [&'c T::Target]>)
A collection over deref items
OwnedString(Cow<'c, [String]>)
A collection over owned string items
BorrowedString(Cow<'c, [&'c String]>)
A collection over borrowed string items
RefStr(Cow<'c, [&'c str]>)
A collection over &str items
Implementations§
Source§impl<'c, T: Deref> Collection<'c, T>
impl<'c, T: Deref> Collection<'c, T>
Sourcepub fn iter(&self) -> CollectionIter<'_, T> ⓘ
pub fn iter(&self) -> CollectionIter<'_, T> ⓘ
Returns an iterator over the collection.
§Examples
use twitch_types::{Collection, UserId, UserIdRef};
let collection: Collection<UserId> = Collection::from(&["1234", "5678"]);
let mut iter = collection.iter();
assert_eq!(iter.next(), Some(UserIdRef::from_static("1234")));
assert_eq!(iter.next(), Some(UserIdRef::from_static("5678")));
assert_eq!(iter.next(), None);
Sourcepub fn into_vec(self) -> Vec<T>
pub fn into_vec(self) -> Vec<T>
Converts the collection into a vector.
§Examples
use twitch_types::{Collection, UserId};
let collection = Collection::from(vec!["1", "2", "3"]);
let vector: Vec<UserId> = collection.into_vec();
Sourcepub fn chunks(
&'c self,
chunk_size: usize,
) -> impl Iterator<Item = Collection<'c, T>> + 'c
pub fn chunks( &'c self, chunk_size: usize, ) -> impl Iterator<Item = Collection<'c, T>> + 'c
Returns chunks of items, similar to slice::chunks
Trait Implementations§
Source§impl<T> Debug for Collection<'_, T>
impl<T> Debug for Collection<'_, T>
Source§impl<T: Deref> Default for Collection<'_, T>
impl<T: Deref> Default for Collection<'_, T>
Source§impl<'a, 'de: 'a, T: Deref + Deserialize<'de> + Clone> Deserialize<'de> for Collection<'a, T>
Available on crate feature serde
only.
impl<'a, 'de: 'a, T: Deref + Deserialize<'de> + Clone> Deserialize<'de> for Collection<'a, T>
Available on crate feature
serde
only.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> From<&'a &'a BadgeSetIdRef> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a BadgeSetIdRef> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a &'a BadgeSetIdRef) -> Self
fn from(v: &'a &'a BadgeSetIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a BlockedTermIdRef> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a &'a BlockedTermIdRef> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a &'a BlockedTermIdRef) -> Self
fn from(v: &'a &'a BlockedTermIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a CategoryIdRef> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a CategoryIdRef> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a CategoryIdRef) -> Self
fn from(v: &'a &'a CategoryIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a CharityCampaignIdRef> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a CharityCampaignIdRef> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a CharityCampaignIdRef) -> Self
fn from(v: &'a &'a CharityCampaignIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a CharityDonationIdRef> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a CharityDonationIdRef> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a CharityDonationIdRef) -> Self
fn from(v: &'a &'a CharityDonationIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a ChatBadgeIdRef> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a ChatBadgeIdRef> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a &'a ChatBadgeIdRef) -> Self
fn from(v: &'a &'a ChatBadgeIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a ClipIdRef> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a ClipIdRef> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a CommunityGiftIdRef> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a &'a CommunityGiftIdRef> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a &'a CommunityGiftIdRef) -> Self
fn from(v: &'a &'a CommunityGiftIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a ConduitIdRef> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a ConduitIdRef> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a &'a ConduitIdRef) -> Self
fn from(v: &'a &'a ConduitIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a ConduitShardIdRef> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a ConduitShardIdRef> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a &'a ConduitShardIdRef) -> Self
fn from(v: &'a &'a ConduitShardIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a CreatorGoalIdRef> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a &'a CreatorGoalIdRef> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a &'a CreatorGoalIdRef) -> Self
fn from(v: &'a &'a CreatorGoalIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a DisplayNameRef> for Collection<'a, DisplayName>
impl<'a> From<&'a &'a DisplayNameRef> for Collection<'a, DisplayName>
Source§fn from(v: &'a &'a DisplayNameRef) -> Self
fn from(v: &'a &'a DisplayNameRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a EmoteIdRef> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a EmoteIdRef> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§fn from(v: &'a &'a EmoteIdRef) -> Self
fn from(v: &'a &'a EmoteIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a EmoteSetIdRef> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a EmoteSetIdRef> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a &'a EmoteSetIdRef) -> Self
fn from(v: &'a &'a EmoteSetIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a EventSubIdRef> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a EventSubIdRef> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a &'a EventSubIdRef) -> Self
fn from(v: &'a &'a EventSubIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a GuestStarSessionIdRef> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a GuestStarSessionIdRef> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a GuestStarSessionIdRef) -> Self
fn from(v: &'a &'a GuestStarSessionIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a GuestStarSlotIdRef> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a GuestStarSlotIdRef> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a GuestStarSlotIdRef) -> Self
fn from(v: &'a &'a GuestStarSlotIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a HexColorRef> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a &'a HexColorRef> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§fn from(v: &'a &'a HexColorRef) -> Self
fn from(v: &'a &'a HexColorRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a HypeTrainIdRef> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a HypeTrainIdRef> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a HypeTrainIdRef) -> Self
fn from(v: &'a &'a HypeTrainIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a IgdbIdRef> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a IgdbIdRef> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a NicknameRef> for Collection<'a, Nickname>
impl<'a> From<&'a &'a NicknameRef> for Collection<'a, Nickname>
Source§fn from(v: &'a &'a NicknameRef) -> Self
fn from(v: &'a &'a NicknameRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a PollChoiceIdRef> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a &'a PollChoiceIdRef> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a &'a PollChoiceIdRef) -> Self
fn from(v: &'a &'a PollChoiceIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a PollIdRef> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a &'a PollIdRef> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a PredictionIdRef> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a &'a PredictionIdRef> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a &'a PredictionIdRef) -> Self
fn from(v: &'a &'a PredictionIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a PredictionOutcomeIdRef> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a &'a PredictionOutcomeIdRef> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a &'a PredictionOutcomeIdRef) -> Self
fn from(v: &'a &'a PredictionOutcomeIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a RedemptionIdRef> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a &'a RedemptionIdRef> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a &'a RedemptionIdRef) -> Self
fn from(v: &'a &'a RedemptionIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a RewardIdRef> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a &'a RewardIdRef> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a &'a RewardIdRef) -> Self
fn from(v: &'a &'a RewardIdRef) -> Self
Converts to this type from the input type.
Source§fn from(v: &'a &'a SharedChatSessionIdRef) -> Self
fn from(v: &'a &'a SharedChatSessionIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a StreamIdRef> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a StreamIdRef> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a StreamIdRef) -> Self
fn from(v: &'a &'a StreamIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a StreamKeyRef> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a &'a StreamKeyRef> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a StreamKeyRef) -> Self
fn from(v: &'a &'a StreamKeyRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a StreamMarkerIdRef> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a StreamMarkerIdRef> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a StreamMarkerIdRef) -> Self
fn from(v: &'a &'a StreamMarkerIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a StreamSegmentIdRef> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a StreamSegmentIdRef> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a StreamSegmentIdRef) -> Self
fn from(v: &'a &'a StreamSegmentIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a TagIdRef> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a TagIdRef> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a TeamIdRef> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a TeamIdRef> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a UnbanRequestIdRef> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a &'a UnbanRequestIdRef> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a &'a UnbanRequestIdRef) -> Self
fn from(v: &'a &'a UnbanRequestIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a VideoIdRef> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a VideoIdRef> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§fn from(v: &'a &'a VideoIdRef) -> Self
fn from(v: &'a &'a VideoIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a WhisperIdRef> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a &'a WhisperIdRef> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§fn from(v: &'a &'a WhisperIdRef) -> Self
fn from(v: &'a &'a WhisperIdRef) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a &'a str> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a str> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a &'a str> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a str> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a &'a str> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a str> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a str> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a &'a str> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, DisplayName>
impl<'a> From<&'a &'a str> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a &'a str> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a &'a str> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a &'a str> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a &'a str> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a &'a str> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a &'a str> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a &'a str> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a &'a str> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a &'a str> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a &'a str> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a &'a str> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a &'a str> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a &'a str> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a, const N: usize> From<&'a [&'a BadgeSetId; N]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a BadgeSetId; N]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a BadgeSetId; N]) -> Self
fn from(v: &'a [&'a BadgeSetId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a BadgeSetIdRef]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a BadgeSetIdRef]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a BadgeSetIdRef]) -> Self
fn from(v: &'a [&'a BadgeSetIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a BadgeSetIdRef; N]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a BadgeSetIdRef; N]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a BadgeSetIdRef; N]) -> Self
fn from(v: &'a [&'a BadgeSetIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a BlockedTermId; N]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a BlockedTermId; N]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a BlockedTermId; N]) -> Self
fn from(v: &'a [&'a BlockedTermId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a BlockedTermIdRef]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a BlockedTermIdRef]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a BlockedTermIdRef]) -> Self
fn from(v: &'a [&'a BlockedTermIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a BlockedTermIdRef; N]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a BlockedTermIdRef; N]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a BlockedTermIdRef; N]) -> Self
fn from(v: &'a [&'a BlockedTermIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CategoryId; N]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CategoryId; N]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CategoryId; N]) -> Self
fn from(v: &'a [&'a CategoryId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a CategoryIdRef]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a CategoryIdRef]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CategoryIdRef]) -> Self
fn from(v: &'a [&'a CategoryIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CategoryIdRef; N]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CategoryIdRef; N]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CategoryIdRef; N]) -> Self
fn from(v: &'a [&'a CategoryIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CharityCampaignId; N]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CharityCampaignId; N]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityCampaignId; N]) -> Self
fn from(v: &'a [&'a CharityCampaignId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a CharityCampaignIdRef]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a CharityCampaignIdRef]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityCampaignIdRef]) -> Self
fn from(v: &'a [&'a CharityCampaignIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CharityCampaignIdRef; N]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CharityCampaignIdRef; N]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityCampaignIdRef; N]) -> Self
fn from(v: &'a [&'a CharityCampaignIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CharityDonationId; N]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CharityDonationId; N]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityDonationId; N]) -> Self
fn from(v: &'a [&'a CharityDonationId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a CharityDonationIdRef]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a CharityDonationIdRef]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityDonationIdRef]) -> Self
fn from(v: &'a [&'a CharityDonationIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CharityDonationIdRef; N]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a CharityDonationIdRef; N]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a CharityDonationIdRef; N]) -> Self
fn from(v: &'a [&'a CharityDonationIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ChatBadgeId; N]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a ChatBadgeId; N]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a ChatBadgeId; N]) -> Self
fn from(v: &'a [&'a ChatBadgeId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a ChatBadgeIdRef]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a ChatBadgeIdRef]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a ChatBadgeIdRef]) -> Self
fn from(v: &'a [&'a ChatBadgeIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ChatBadgeIdRef; N]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a ChatBadgeIdRef; N]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a ChatBadgeIdRef; N]) -> Self
fn from(v: &'a [&'a ChatBadgeIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ClipId; N]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a ClipId; N]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a ClipIdRef]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a ClipIdRef]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a ClipIdRef; N]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a ClipIdRef; N]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a CommunityGiftId; N]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a, const N: usize> From<&'a [&'a CommunityGiftId; N]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a [&'a CommunityGiftId; N]) -> Self
fn from(v: &'a [&'a CommunityGiftId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a CommunityGiftIdRef]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a [&'a CommunityGiftIdRef]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a [&'a CommunityGiftIdRef]) -> Self
fn from(v: &'a [&'a CommunityGiftIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CommunityGiftIdRef; N]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a, const N: usize> From<&'a [&'a CommunityGiftIdRef; N]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a [&'a CommunityGiftIdRef; N]) -> Self
fn from(v: &'a [&'a CommunityGiftIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ConduitId; N]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a ConduitId; N]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a ConduitIdRef]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a ConduitIdRef]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a ConduitIdRef]) -> Self
fn from(v: &'a [&'a ConduitIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ConduitIdRef; N]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a ConduitIdRef; N]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a ConduitIdRef; N]) -> Self
fn from(v: &'a [&'a ConduitIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ConduitShardId; N]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a ConduitShardId; N]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a ConduitShardId; N]) -> Self
fn from(v: &'a [&'a ConduitShardId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a ConduitShardIdRef]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a ConduitShardIdRef]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a ConduitShardIdRef]) -> Self
fn from(v: &'a [&'a ConduitShardIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a ConduitShardIdRef; N]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a ConduitShardIdRef; N]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a ConduitShardIdRef; N]) -> Self
fn from(v: &'a [&'a ConduitShardIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CreatorGoalId; N]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a, const N: usize> From<&'a [&'a CreatorGoalId; N]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a [&'a CreatorGoalId; N]) -> Self
fn from(v: &'a [&'a CreatorGoalId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a CreatorGoalIdRef]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a [&'a CreatorGoalIdRef]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a [&'a CreatorGoalIdRef]) -> Self
fn from(v: &'a [&'a CreatorGoalIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a CreatorGoalIdRef; N]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a, const N: usize> From<&'a [&'a CreatorGoalIdRef; N]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a [&'a CreatorGoalIdRef; N]) -> Self
fn from(v: &'a [&'a CreatorGoalIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a DisplayName; N]> for Collection<'a, DisplayName>
impl<'a, const N: usize> From<&'a [&'a DisplayName; N]> for Collection<'a, DisplayName>
Source§fn from(v: &'a [&'a DisplayName; N]) -> Self
fn from(v: &'a [&'a DisplayName; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a DisplayNameRef]> for Collection<'a, DisplayName>
impl<'a> From<&'a [&'a DisplayNameRef]> for Collection<'a, DisplayName>
Source§fn from(v: &'a [&'a DisplayNameRef]) -> Self
fn from(v: &'a [&'a DisplayNameRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a DisplayNameRef; N]> for Collection<'a, DisplayName>
impl<'a, const N: usize> From<&'a [&'a DisplayNameRef; N]> for Collection<'a, DisplayName>
Source§fn from(v: &'a [&'a DisplayNameRef; N]) -> Self
fn from(v: &'a [&'a DisplayNameRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EmoteId; N]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a EmoteId; N]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a EmoteIdRef]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a EmoteIdRef]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a EmoteIdRef]) -> Self
fn from(v: &'a [&'a EmoteIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EmoteIdRef; N]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a EmoteIdRef; N]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a EmoteIdRef; N]) -> Self
fn from(v: &'a [&'a EmoteIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EmoteSetId; N]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a EmoteSetId; N]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a EmoteSetId; N]) -> Self
fn from(v: &'a [&'a EmoteSetId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a EmoteSetIdRef]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a EmoteSetIdRef]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a EmoteSetIdRef]) -> Self
fn from(v: &'a [&'a EmoteSetIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EmoteSetIdRef; N]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a EmoteSetIdRef; N]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [&'a EmoteSetIdRef; N]) -> Self
fn from(v: &'a [&'a EmoteSetIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EventSubId; N]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a EventSubId; N]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a EventSubId; N]) -> Self
fn from(v: &'a [&'a EventSubId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a EventSubIdRef]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a EventSubIdRef]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a EventSubIdRef]) -> Self
fn from(v: &'a [&'a EventSubIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a EventSubIdRef; N]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a EventSubIdRef; N]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [&'a EventSubIdRef; N]) -> Self
fn from(v: &'a [&'a EventSubIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a GuestStarSessionId; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a GuestStarSessionId; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSessionId; N]) -> Self
fn from(v: &'a [&'a GuestStarSessionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a GuestStarSessionIdRef]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a GuestStarSessionIdRef]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSessionIdRef]) -> Self
fn from(v: &'a [&'a GuestStarSessionIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a GuestStarSessionIdRef; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a GuestStarSessionIdRef; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSessionIdRef; N]) -> Self
fn from(v: &'a [&'a GuestStarSessionIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a GuestStarSlotId; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a GuestStarSlotId; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSlotId; N]) -> Self
fn from(v: &'a [&'a GuestStarSlotId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a GuestStarSlotIdRef]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a GuestStarSlotIdRef]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSlotIdRef]) -> Self
fn from(v: &'a [&'a GuestStarSlotIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a GuestStarSlotIdRef; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a GuestStarSlotIdRef; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a GuestStarSlotIdRef; N]) -> Self
fn from(v: &'a [&'a GuestStarSlotIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a HexColor; N]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a, const N: usize> From<&'a [&'a HexColor; N]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a [&'a HexColorRef]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a [&'a HexColorRef]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§fn from(v: &'a [&'a HexColorRef]) -> Self
fn from(v: &'a [&'a HexColorRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a HexColorRef; N]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a, const N: usize> From<&'a [&'a HexColorRef; N]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§fn from(v: &'a [&'a HexColorRef; N]) -> Self
fn from(v: &'a [&'a HexColorRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a HypeTrainId; N]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a HypeTrainId; N]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a HypeTrainId; N]) -> Self
fn from(v: &'a [&'a HypeTrainId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a HypeTrainIdRef]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a HypeTrainIdRef]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a HypeTrainIdRef]) -> Self
fn from(v: &'a [&'a HypeTrainIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a HypeTrainIdRef; N]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a HypeTrainIdRef; N]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a HypeTrainIdRef; N]) -> Self
fn from(v: &'a [&'a HypeTrainIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a IgdbId; N]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a IgdbId; N]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a IgdbIdRef]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a IgdbIdRef]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a IgdbIdRef; N]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a IgdbIdRef; N]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a NicknameRef]> for Collection<'a, Nickname>
impl<'a> From<&'a [&'a NicknameRef]> for Collection<'a, Nickname>
Source§fn from(v: &'a [&'a NicknameRef]) -> Self
fn from(v: &'a [&'a NicknameRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a NicknameRef; N]> for Collection<'a, Nickname>
impl<'a, const N: usize> From<&'a [&'a NicknameRef; N]> for Collection<'a, Nickname>
Source§fn from(v: &'a [&'a NicknameRef; N]) -> Self
fn from(v: &'a [&'a NicknameRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PollChoiceId; N]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PollChoiceId; N]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PollChoiceId; N]) -> Self
fn from(v: &'a [&'a PollChoiceId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a PollChoiceIdRef]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a PollChoiceIdRef]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PollChoiceIdRef]) -> Self
fn from(v: &'a [&'a PollChoiceIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PollChoiceIdRef; N]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PollChoiceIdRef; N]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PollChoiceIdRef; N]) -> Self
fn from(v: &'a [&'a PollChoiceIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PollId; N]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PollId; N]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a PollIdRef]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a PollIdRef]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a PollIdRef; N]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PollIdRef; N]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a PredictionId; N]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PredictionId; N]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionId; N]) -> Self
fn from(v: &'a [&'a PredictionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a PredictionIdRef]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a PredictionIdRef]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionIdRef]) -> Self
fn from(v: &'a [&'a PredictionIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PredictionIdRef; N]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PredictionIdRef; N]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionIdRef; N]) -> Self
fn from(v: &'a [&'a PredictionIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PredictionOutcomeId; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PredictionOutcomeId; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionOutcomeId; N]) -> Self
fn from(v: &'a [&'a PredictionOutcomeId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a PredictionOutcomeIdRef]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a PredictionOutcomeIdRef]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionOutcomeIdRef]) -> Self
fn from(v: &'a [&'a PredictionOutcomeIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a PredictionOutcomeIdRef; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a PredictionOutcomeIdRef; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a PredictionOutcomeIdRef; N]) -> Self
fn from(v: &'a [&'a PredictionOutcomeIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a RedemptionId; N]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a RedemptionId; N]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a RedemptionId; N]) -> Self
fn from(v: &'a [&'a RedemptionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a RedemptionIdRef]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a RedemptionIdRef]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a RedemptionIdRef]) -> Self
fn from(v: &'a [&'a RedemptionIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a RedemptionIdRef; N]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a RedemptionIdRef; N]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a RedemptionIdRef; N]) -> Self
fn from(v: &'a [&'a RedemptionIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a RewardId; N]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a RewardId; N]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a RewardIdRef]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a RewardIdRef]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a RewardIdRef]) -> Self
fn from(v: &'a [&'a RewardIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a RewardIdRef; N]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a RewardIdRef; N]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a [&'a RewardIdRef; N]) -> Self
fn from(v: &'a [&'a RewardIdRef; N]) -> Self
Converts to this type from the input type.
Source§fn from(v: &'a [&'a SharedChatSessionId; N]) -> Self
fn from(v: &'a [&'a SharedChatSessionId; N]) -> Self
Converts to this type from the input type.
Source§fn from(v: &'a [&'a SharedChatSessionIdRef]) -> Self
fn from(v: &'a [&'a SharedChatSessionIdRef]) -> Self
Converts to this type from the input type.
Source§fn from(v: &'a [&'a SharedChatSessionIdRef; N]) -> Self
fn from(v: &'a [&'a SharedChatSessionIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamId; N]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamId; N]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a StreamIdRef]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a StreamIdRef]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamIdRef]) -> Self
fn from(v: &'a [&'a StreamIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamIdRef; N]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamIdRef; N]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamIdRef; N]) -> Self
fn from(v: &'a [&'a StreamIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamKey; N]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamKey; N]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a StreamKeyRef]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a StreamKeyRef]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamKeyRef]) -> Self
fn from(v: &'a [&'a StreamKeyRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamKeyRef; N]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamKeyRef; N]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamKeyRef; N]) -> Self
fn from(v: &'a [&'a StreamKeyRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamMarkerId; N]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamMarkerId; N]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamMarkerId; N]) -> Self
fn from(v: &'a [&'a StreamMarkerId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a StreamMarkerIdRef]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a StreamMarkerIdRef]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamMarkerIdRef]) -> Self
fn from(v: &'a [&'a StreamMarkerIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamMarkerIdRef; N]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamMarkerIdRef; N]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamMarkerIdRef; N]) -> Self
fn from(v: &'a [&'a StreamMarkerIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamSegmentId; N]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamSegmentId; N]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamSegmentId; N]) -> Self
fn from(v: &'a [&'a StreamSegmentId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a StreamSegmentIdRef]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a StreamSegmentIdRef]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamSegmentIdRef]) -> Self
fn from(v: &'a [&'a StreamSegmentIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a StreamSegmentIdRef; N]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a StreamSegmentIdRef; N]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a StreamSegmentIdRef; N]) -> Self
fn from(v: &'a [&'a StreamSegmentIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a String]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, DisplayName>
impl<'a> From<&'a [&'a String]> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a [&'a String]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a String]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a [&'a String]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'c, T> From<&'c [&'c T]> for Collection<'c, T>
impl<'c, T> From<&'c [&'c T]> for Collection<'c, T>
Source§impl<'a, const N: usize> From<&'a [&'a TagId; N]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a TagId; N]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a TagIdRef]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a TagIdRef]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a TagIdRef; N]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a TagIdRef; N]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a TeamId; N]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a TeamId; N]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a TeamIdRef]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a TeamIdRef]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a TeamIdRef; N]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a TeamIdRef; N]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a UnbanRequestId; N]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a UnbanRequestId; N]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a UnbanRequestId; N]) -> Self
fn from(v: &'a [&'a UnbanRequestId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a UnbanRequestIdRef]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a UnbanRequestIdRef]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a UnbanRequestIdRef]) -> Self
fn from(v: &'a [&'a UnbanRequestIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a UnbanRequestIdRef; N]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a UnbanRequestIdRef; N]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [&'a UnbanRequestIdRef; N]) -> Self
fn from(v: &'a [&'a UnbanRequestIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a VideoId; N]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a VideoId; N]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a VideoIdRef]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a VideoIdRef]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a VideoIdRef]) -> Self
fn from(v: &'a [&'a VideoIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a VideoIdRef; N]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a VideoIdRef; N]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§fn from(v: &'a [&'a VideoIdRef; N]) -> Self
fn from(v: &'a [&'a VideoIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a WhisperId; N]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a, const N: usize> From<&'a [&'a WhisperId; N]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<&'a [&'a WhisperIdRef]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a [&'a WhisperIdRef]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§fn from(v: &'a [&'a WhisperIdRef]) -> Self
fn from(v: &'a [&'a WhisperIdRef]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [&'a WhisperIdRef; N]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a, const N: usize> From<&'a [&'a WhisperIdRef; N]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§fn from(v: &'a [&'a WhisperIdRef; N]) -> Self
fn from(v: &'a [&'a WhisperIdRef; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [&'a str]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, DisplayName>
impl<'a> From<&'a [&'a str]> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a [&'a str]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [&'a str]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a [&'a str]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, DisplayName>
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, DisplayName>
Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a, const N: usize> From<&'a [&'a str; N]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a, const N: usize> From<&'a [BadgeSetId; N]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [BadgeSetId; N]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [BadgeSetId; N]) -> Self
fn from(v: &'a [BadgeSetId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [BlockedTermId; N]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [BlockedTermId; N]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [BlockedTermId; N]) -> Self
fn from(v: &'a [BlockedTermId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [CategoryId; N]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [CategoryId; N]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a [CategoryId; N]) -> Self
fn from(v: &'a [CategoryId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [CharityCampaignId; N]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [CharityCampaignId; N]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a [CharityCampaignId; N]) -> Self
fn from(v: &'a [CharityCampaignId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [CharityDonationId; N]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [CharityDonationId; N]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a [CharityDonationId; N]) -> Self
fn from(v: &'a [CharityDonationId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [ChatBadgeId; N]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [ChatBadgeId; N]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a [ChatBadgeId; N]) -> Self
fn from(v: &'a [ChatBadgeId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [ClipId; N]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [ClipId; N]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [CommunityGiftId; N]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a, const N: usize> From<&'a [CommunityGiftId; N]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a [CommunityGiftId; N]) -> Self
fn from(v: &'a [CommunityGiftId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [ConduitId; N]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [ConduitId; N]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [ConduitShardId; N]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [ConduitShardId; N]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [ConduitShardId; N]) -> Self
fn from(v: &'a [ConduitShardId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [CreatorGoalId; N]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a, const N: usize> From<&'a [CreatorGoalId; N]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a [CreatorGoalId; N]) -> Self
fn from(v: &'a [CreatorGoalId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [DisplayName; N]> for Collection<'a, DisplayName>
impl<'a, const N: usize> From<&'a [DisplayName; N]> for Collection<'a, DisplayName>
Source§fn from(v: &'a [DisplayName; N]) -> Self
fn from(v: &'a [DisplayName; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [EmoteId; N]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [EmoteId; N]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [EmoteSetId; N]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [EmoteSetId; N]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a [EmoteSetId; N]) -> Self
fn from(v: &'a [EmoteSetId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [EventSubId; N]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [EventSubId; N]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a [EventSubId; N]) -> Self
fn from(v: &'a [EventSubId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [GuestStarSessionId; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [GuestStarSessionId; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a [GuestStarSessionId; N]) -> Self
fn from(v: &'a [GuestStarSessionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [GuestStarSlotId; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [GuestStarSlotId; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a [GuestStarSlotId; N]) -> Self
fn from(v: &'a [GuestStarSlotId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [HexColor; N]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a, const N: usize> From<&'a [HexColor; N]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a, const N: usize> From<&'a [HypeTrainId; N]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [HypeTrainId; N]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a [HypeTrainId; N]) -> Self
fn from(v: &'a [HypeTrainId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [IgdbId; N]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [IgdbId; N]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [PollChoiceId; N]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [PollChoiceId; N]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a [PollChoiceId; N]) -> Self
fn from(v: &'a [PollChoiceId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [PollId; N]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [PollId; N]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [PredictionId; N]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [PredictionId; N]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a [PredictionId; N]) -> Self
fn from(v: &'a [PredictionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [PredictionOutcomeId; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [PredictionOutcomeId; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a [PredictionOutcomeId; N]) -> Self
fn from(v: &'a [PredictionOutcomeId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [RedemptionId; N]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [RedemptionId; N]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a [RedemptionId; N]) -> Self
fn from(v: &'a [RedemptionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [RewardId; N]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [RewardId; N]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a [SharedChatSessionId; N]) -> Self
fn from(v: &'a [SharedChatSessionId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [StreamId; N]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [StreamId; N]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [StreamKey; N]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [StreamKey; N]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [StreamMarkerId; N]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [StreamMarkerId; N]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a [StreamMarkerId; N]) -> Self
fn from(v: &'a [StreamMarkerId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [StreamSegmentId; N]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [StreamSegmentId; N]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a [StreamSegmentId; N]) -> Self
fn from(v: &'a [StreamSegmentId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a [String]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [String]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [String]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a [String]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [String]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a [String]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [String]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a [String]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a [String]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [String]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [String]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [String]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [String]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a [String]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a [String]> for Collection<'a, DisplayName>
impl<'a> From<&'a [String]> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a [String]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a [String]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [String]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a [String]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a [String]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a [String]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a [String]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a [String]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a [String]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a [String]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a [String]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a [String]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a [String]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a [String]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a [String]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a [String]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, DisplayName>
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, DisplayName>
Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a, const N: usize> From<&'a [String; N]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'c, T> From<&'c [T]> for Collection<'c, T>
impl<'c, T> From<&'c [T]> for Collection<'c, T>
Source§impl<'a, const N: usize> From<&'a [TagId; N]> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [TagId; N]> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [TeamId; N]> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [TeamId; N]> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [UnbanRequestId; N]> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a, const N: usize> From<&'a [UnbanRequestId; N]> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a [UnbanRequestId; N]) -> Self
fn from(v: &'a [UnbanRequestId; N]) -> Self
Converts to this type from the input type.
Source§impl<'a, const N: usize> From<&'a [VideoId; N]> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a, const N: usize> From<&'a [VideoId; N]> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a, const N: usize> From<&'a [WhisperId; N]> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a, const N: usize> From<&'a [WhisperId; N]> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<&'a BadgeSetId> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a BadgeSetId> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a BadgeSetId) -> Self
fn from(v: &'a BadgeSetId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a BlockedTermId> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a BlockedTermId> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a BlockedTermId) -> Self
fn from(v: &'a BlockedTermId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a CategoryId> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a CategoryId> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a CategoryId) -> Self
fn from(v: &'a CategoryId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a CharityCampaignId> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a CharityCampaignId> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a CharityCampaignId) -> Self
fn from(v: &'a CharityCampaignId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a CharityDonationId> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a CharityDonationId> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a CharityDonationId) -> Self
fn from(v: &'a CharityDonationId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a ChatBadgeId> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a ChatBadgeId> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a ChatBadgeId) -> Self
fn from(v: &'a ChatBadgeId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a CommunityGiftId> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a CommunityGiftId> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a CommunityGiftId) -> Self
fn from(v: &'a CommunityGiftId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a ConduitId> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a ConduitId> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a ConduitShardId> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a ConduitShardId> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a ConduitShardId) -> Self
fn from(v: &'a ConduitShardId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a CreatorGoalId> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a CreatorGoalId> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a CreatorGoalId) -> Self
fn from(v: &'a CreatorGoalId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a DisplayName> for Collection<'a, DisplayName>
impl<'a> From<&'a DisplayName> for Collection<'a, DisplayName>
Source§fn from(v: &'a DisplayName) -> Self
fn from(v: &'a DisplayName) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a EmoteSetId> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a EmoteSetId> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a EmoteSetId) -> Self
fn from(v: &'a EmoteSetId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a EventSubId> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a EventSubId> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a EventSubId) -> Self
fn from(v: &'a EventSubId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a GuestStarSessionId> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a GuestStarSessionId> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a GuestStarSessionId) -> Self
fn from(v: &'a GuestStarSessionId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a GuestStarSlotId> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a GuestStarSlotId> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a GuestStarSlotId) -> Self
fn from(v: &'a GuestStarSlotId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a HexColor> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a HexColor> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a HypeTrainId> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a HypeTrainId> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a HypeTrainId) -> Self
fn from(v: &'a HypeTrainId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a PollChoiceId> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a PollChoiceId> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a PollChoiceId) -> Self
fn from(v: &'a PollChoiceId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a PredictionId> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a PredictionId> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a PredictionId) -> Self
fn from(v: &'a PredictionId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a PredictionOutcomeId> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a PredictionOutcomeId> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a PredictionOutcomeId) -> Self
fn from(v: &'a PredictionOutcomeId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a RedemptionId> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a RedemptionId> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a RedemptionId) -> Self
fn from(v: &'a RedemptionId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a RewardId> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a RewardId> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a SharedChatSessionId) -> Self
fn from(v: &'a SharedChatSessionId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a StreamId> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a StreamId> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a StreamKey> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a StreamKey> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a StreamMarkerId> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a StreamMarkerId> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a StreamMarkerId) -> Self
fn from(v: &'a StreamMarkerId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a StreamSegmentId> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a StreamSegmentId> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a StreamSegmentId) -> Self
fn from(v: &'a StreamSegmentId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a UnbanRequestId> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a UnbanRequestId> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a UnbanRequestId) -> Self
fn from(v: &'a UnbanRequestId) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a BadgeSetId>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a BadgeSetId>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a Vec<&'a BadgeSetId>) -> Self
fn from(v: &'a Vec<&'a BadgeSetId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a BlockedTermId>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<&'a BlockedTermId>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: &'a Vec<&'a BlockedTermId>) -> Self
fn from(v: &'a Vec<&'a BlockedTermId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a CategoryId>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a CategoryId>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a CategoryId>) -> Self
fn from(v: &'a Vec<&'a CategoryId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a CharityCampaignId>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a CharityCampaignId>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a CharityCampaignId>) -> Self
fn from(v: &'a Vec<&'a CharityCampaignId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a CharityDonationId>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a CharityDonationId>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a CharityDonationId>) -> Self
fn from(v: &'a Vec<&'a CharityDonationId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a ChatBadgeId>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a ChatBadgeId>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: &'a Vec<&'a ChatBadgeId>) -> Self
fn from(v: &'a Vec<&'a ChatBadgeId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a ClipId>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a ClipId>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a CommunityGiftId>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a Vec<&'a CommunityGiftId>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: &'a Vec<&'a CommunityGiftId>) -> Self
fn from(v: &'a Vec<&'a CommunityGiftId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a ConduitId>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a ConduitId>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<&'a ConduitShardId>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a ConduitShardId>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a Vec<&'a ConduitShardId>) -> Self
fn from(v: &'a Vec<&'a ConduitShardId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a CreatorGoalId>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a Vec<&'a CreatorGoalId>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: &'a Vec<&'a CreatorGoalId>) -> Self
fn from(v: &'a Vec<&'a CreatorGoalId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a DisplayName>> for Collection<'a, DisplayName>
impl<'a> From<&'a Vec<&'a DisplayName>> for Collection<'a, DisplayName>
Source§fn from(v: &'a Vec<&'a DisplayName>) -> Self
fn from(v: &'a Vec<&'a DisplayName>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a EmoteId>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a EmoteId>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<&'a EmoteSetId>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a EmoteSetId>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: &'a Vec<&'a EmoteSetId>) -> Self
fn from(v: &'a Vec<&'a EmoteSetId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a EventSubId>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a EventSubId>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: &'a Vec<&'a EventSubId>) -> Self
fn from(v: &'a Vec<&'a EventSubId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a GuestStarSessionId>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a GuestStarSessionId>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a GuestStarSessionId>) -> Self
fn from(v: &'a Vec<&'a GuestStarSessionId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a GuestStarSlotId>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a GuestStarSlotId>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a GuestStarSlotId>) -> Self
fn from(v: &'a Vec<&'a GuestStarSlotId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a HexColor>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a Vec<&'a HexColor>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a Vec<&'a HypeTrainId>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a HypeTrainId>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a HypeTrainId>) -> Self
fn from(v: &'a Vec<&'a HypeTrainId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a IgdbId>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a IgdbId>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a PollChoiceId>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a PollChoiceId>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: &'a Vec<&'a PollChoiceId>) -> Self
fn from(v: &'a Vec<&'a PollChoiceId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a PollId>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a PollId>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a PredictionId>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a PredictionId>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: &'a Vec<&'a PredictionId>) -> Self
fn from(v: &'a Vec<&'a PredictionId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a PredictionOutcomeId>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a PredictionOutcomeId>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: &'a Vec<&'a PredictionOutcomeId>) -> Self
fn from(v: &'a Vec<&'a PredictionOutcomeId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a RedemptionId>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a RedemptionId>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: &'a Vec<&'a RedemptionId>) -> Self
fn from(v: &'a Vec<&'a RedemptionId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a RewardId>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a RewardId>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: &'a Vec<&'a SharedChatSessionId>) -> Self
fn from(v: &'a Vec<&'a SharedChatSessionId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a StreamId>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a StreamId>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a StreamKey>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a StreamKey>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a StreamMarkerId>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a StreamMarkerId>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a StreamMarkerId>) -> Self
fn from(v: &'a Vec<&'a StreamMarkerId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a StreamSegmentId>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a StreamSegmentId>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: &'a Vec<&'a StreamSegmentId>) -> Self
fn from(v: &'a Vec<&'a StreamSegmentId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a TagId>> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a TagId>> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a TeamId>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a TeamId>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a UnbanRequestId>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<&'a UnbanRequestId>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: &'a Vec<&'a UnbanRequestId>) -> Self
fn from(v: &'a Vec<&'a UnbanRequestId>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Vec<&'a VideoId>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a VideoId>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a WhisperId>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a Vec<&'a WhisperId>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, DisplayName>
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<&'a str>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a Vec<&'a str>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, DisplayName>
impl<'a> From<&'a Vec<String>> for Collection<'a, DisplayName>
Source§impl<'a> From<&'a Vec<String>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a Vec<String>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a Vec<String>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<&'a VideoId> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<&'a VideoId> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<&'a WhisperId> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<&'a WhisperId> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<Vec<&'a BadgeSetIdRef>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a BadgeSetIdRef>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§fn from(v: Vec<&'a BadgeSetIdRef>) -> Self
fn from(v: Vec<&'a BadgeSetIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a BlockedTermIdRef>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a BlockedTermIdRef>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§fn from(v: Vec<&'a BlockedTermIdRef>) -> Self
fn from(v: Vec<&'a BlockedTermIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a CategoryIdRef>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a CategoryIdRef>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a CategoryIdRef>) -> Self
fn from(v: Vec<&'a CategoryIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a CharityCampaignIdRef>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a CharityCampaignIdRef>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a CharityCampaignIdRef>) -> Self
fn from(v: Vec<&'a CharityCampaignIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a CharityDonationIdRef>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a CharityDonationIdRef>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a CharityDonationIdRef>) -> Self
fn from(v: Vec<&'a CharityDonationIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a ChatBadgeIdRef>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a ChatBadgeIdRef>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§fn from(v: Vec<&'a ChatBadgeIdRef>) -> Self
fn from(v: Vec<&'a ChatBadgeIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a ClipIdRef>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a ClipIdRef>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a CommunityGiftIdRef>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<Vec<&'a CommunityGiftIdRef>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§fn from(v: Vec<&'a CommunityGiftIdRef>) -> Self
fn from(v: Vec<&'a CommunityGiftIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a ConduitIdRef>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a ConduitIdRef>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§fn from(v: Vec<&'a ConduitIdRef>) -> Self
fn from(v: Vec<&'a ConduitIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a ConduitShardIdRef>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a ConduitShardIdRef>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§fn from(v: Vec<&'a ConduitShardIdRef>) -> Self
fn from(v: Vec<&'a ConduitShardIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a CreatorGoalIdRef>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<Vec<&'a CreatorGoalIdRef>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§fn from(v: Vec<&'a CreatorGoalIdRef>) -> Self
fn from(v: Vec<&'a CreatorGoalIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a DisplayNameRef>> for Collection<'a, DisplayName>
impl<'a> From<Vec<&'a DisplayNameRef>> for Collection<'a, DisplayName>
Source§fn from(v: Vec<&'a DisplayNameRef>) -> Self
fn from(v: Vec<&'a DisplayNameRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a EmoteIdRef>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a EmoteIdRef>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§fn from(v: Vec<&'a EmoteIdRef>) -> Self
fn from(v: Vec<&'a EmoteIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a EmoteSetIdRef>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a EmoteSetIdRef>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§fn from(v: Vec<&'a EmoteSetIdRef>) -> Self
fn from(v: Vec<&'a EmoteSetIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a EventSubIdRef>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a EventSubIdRef>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§fn from(v: Vec<&'a EventSubIdRef>) -> Self
fn from(v: Vec<&'a EventSubIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a GuestStarSessionIdRef>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a GuestStarSessionIdRef>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a GuestStarSessionIdRef>) -> Self
fn from(v: Vec<&'a GuestStarSessionIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a GuestStarSlotIdRef>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a GuestStarSlotIdRef>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a GuestStarSlotIdRef>) -> Self
fn from(v: Vec<&'a GuestStarSlotIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a HexColorRef>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<Vec<&'a HexColorRef>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§fn from(v: Vec<&'a HexColorRef>) -> Self
fn from(v: Vec<&'a HexColorRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a HypeTrainIdRef>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a HypeTrainIdRef>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a HypeTrainIdRef>) -> Self
fn from(v: Vec<&'a HypeTrainIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a IgdbIdRef>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a IgdbIdRef>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a NicknameRef>> for Collection<'a, Nickname>
impl<'a> From<Vec<&'a NicknameRef>> for Collection<'a, Nickname>
Source§fn from(v: Vec<&'a NicknameRef>) -> Self
fn from(v: Vec<&'a NicknameRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a PollChoiceIdRef>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a PollChoiceIdRef>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§fn from(v: Vec<&'a PollChoiceIdRef>) -> Self
fn from(v: Vec<&'a PollChoiceIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a PollIdRef>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a PollIdRef>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a PredictionIdRef>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a PredictionIdRef>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§fn from(v: Vec<&'a PredictionIdRef>) -> Self
fn from(v: Vec<&'a PredictionIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a PredictionOutcomeIdRef>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a PredictionOutcomeIdRef>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§fn from(v: Vec<&'a PredictionOutcomeIdRef>) -> Self
fn from(v: Vec<&'a PredictionOutcomeIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a RedemptionIdRef>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a RedemptionIdRef>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§fn from(v: Vec<&'a RedemptionIdRef>) -> Self
fn from(v: Vec<&'a RedemptionIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a RewardIdRef>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a RewardIdRef>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§fn from(v: Vec<&'a RewardIdRef>) -> Self
fn from(v: Vec<&'a RewardIdRef>) -> Self
Converts to this type from the input type.
Source§fn from(v: Vec<&'a SharedChatSessionIdRef>) -> Self
fn from(v: Vec<&'a SharedChatSessionIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a StreamIdRef>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a StreamIdRef>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a StreamIdRef>) -> Self
fn from(v: Vec<&'a StreamIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a StreamKeyRef>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a StreamKeyRef>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a StreamKeyRef>) -> Self
fn from(v: Vec<&'a StreamKeyRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a StreamMarkerIdRef>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a StreamMarkerIdRef>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a StreamMarkerIdRef>) -> Self
fn from(v: Vec<&'a StreamMarkerIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a StreamSegmentIdRef>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a StreamSegmentIdRef>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a StreamSegmentIdRef>) -> Self
fn from(v: Vec<&'a StreamSegmentIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a String>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, DisplayName>
impl<'a> From<Vec<&'a String>> for Collection<'a, DisplayName>
Source§impl<'a> From<Vec<&'a String>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a String>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<Vec<&'a String>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl<'a> From<Vec<&'a TagIdRef>> for Collection<'a, TagId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a TagIdRef>> for Collection<'a, TagId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a TeamIdRef>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a TeamIdRef>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a UnbanRequestIdRef>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a UnbanRequestIdRef>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§fn from(v: Vec<&'a UnbanRequestIdRef>) -> Self
fn from(v: Vec<&'a UnbanRequestIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a VideoIdRef>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a VideoIdRef>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§fn from(v: Vec<&'a VideoIdRef>) -> Self
fn from(v: Vec<&'a VideoIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a WhisperIdRef>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<Vec<&'a WhisperIdRef>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§fn from(v: Vec<&'a WhisperIdRef>) -> Self
fn from(v: Vec<&'a WhisperIdRef>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<Vec<&'a str>> for Collection<'a, BadgeSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, BadgeSetId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, BlockedTermId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, BlockedTermId>
Available on crate feature
moderation
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, CategoryId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, CategoryId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, CharityCampaignId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, CharityCampaignId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, CharityDonationId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, CharityDonationId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, ChatBadgeId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, ChatBadgeId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, ClipId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, ClipId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, CommunityGiftId>
Available on crate feature sub
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, CommunityGiftId>
Available on crate feature
sub
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, ConduitId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, ConduitId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, ConduitShardId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, CreatorGoalId>
Available on crate feature goal
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, CreatorGoalId>
Available on crate feature
goal
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, DisplayName>
impl<'a> From<Vec<&'a str>> for Collection<'a, DisplayName>
Source§impl<'a> From<Vec<&'a str>> for Collection<'a, EmoteId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, EmoteId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, EmoteSetId>
Available on crate feature emote
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, EmoteSetId>
Available on crate feature
emote
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, EventSubId>
Available on crate feature eventsub
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, EventSubId>
Available on crate feature
eventsub
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, GuestStarSessionId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, GuestStarSlotId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, HexColor>
Available on crate feature color
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, HexColor>
Available on crate feature
color
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, HypeTrainId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, HypeTrainId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, IgdbId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, IgdbId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, PollChoiceId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, PollChoiceId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, PollId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, PollId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, PredictionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, PredictionId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, PredictionOutcomeId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, RedemptionId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, RedemptionId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, RewardId>
Available on crate feature points
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, RewardId>
Available on crate feature
points
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, StreamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, StreamId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, StreamKey>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, StreamKey>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, StreamMarkerId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, StreamMarkerId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, StreamSegmentId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, StreamSegmentId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, TeamId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, TeamId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, UnbanRequestId>
Available on crate feature moderation
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, VideoId>
Available on crate feature stream
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, VideoId>
Available on crate feature
stream
only.Source§impl<'a> From<Vec<&'a str>> for Collection<'a, WhisperId>
Available on crate feature chat
only.
impl<'a> From<Vec<&'a str>> for Collection<'a, WhisperId>
Available on crate feature
chat
only.Source§impl From<Vec<String>> for Collection<'_, BadgeSetId>
Available on crate feature emote
only.
impl From<Vec<String>> for Collection<'_, BadgeSetId>
Available on crate feature
emote
only.Source§impl From<Vec<String>> for Collection<'_, BlockedTermId>
Available on crate feature moderation
only.
impl From<Vec<String>> for Collection<'_, BlockedTermId>
Available on crate feature
moderation
only.Source§impl From<Vec<String>> for Collection<'_, CategoryId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, CategoryId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, CharityCampaignId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, CharityCampaignId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, CharityDonationId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, CharityDonationId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, ChatBadgeId>
Available on crate feature emote
only.
impl From<Vec<String>> for Collection<'_, ChatBadgeId>
Available on crate feature
emote
only.Source§impl From<Vec<String>> for Collection<'_, CommunityGiftId>
Available on crate feature sub
only.
impl From<Vec<String>> for Collection<'_, CommunityGiftId>
Available on crate feature
sub
only.Source§impl From<Vec<String>> for Collection<'_, ConduitId>
Available on crate feature eventsub
only.
impl From<Vec<String>> for Collection<'_, ConduitId>
Available on crate feature
eventsub
only.Source§impl From<Vec<String>> for Collection<'_, ConduitShardId>
Available on crate feature eventsub
only.
impl From<Vec<String>> for Collection<'_, ConduitShardId>
Available on crate feature
eventsub
only.Source§impl From<Vec<String>> for Collection<'_, CreatorGoalId>
Available on crate feature goal
only.
impl From<Vec<String>> for Collection<'_, CreatorGoalId>
Available on crate feature
goal
only.Source§impl From<Vec<String>> for Collection<'_, DisplayName>
impl From<Vec<String>> for Collection<'_, DisplayName>
Source§impl From<Vec<String>> for Collection<'_, EmoteSetId>
Available on crate feature emote
only.
impl From<Vec<String>> for Collection<'_, EmoteSetId>
Available on crate feature
emote
only.Source§impl From<Vec<String>> for Collection<'_, EventSubId>
Available on crate feature eventsub
only.
impl From<Vec<String>> for Collection<'_, EventSubId>
Available on crate feature
eventsub
only.Source§impl From<Vec<String>> for Collection<'_, GuestStarSessionId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, GuestStarSessionId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, GuestStarSlotId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, GuestStarSlotId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, HypeTrainId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, HypeTrainId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, PollChoiceId>
Available on crate feature points
only.
impl From<Vec<String>> for Collection<'_, PollChoiceId>
Available on crate feature
points
only.Source§impl From<Vec<String>> for Collection<'_, PredictionId>
Available on crate feature points
only.
impl From<Vec<String>> for Collection<'_, PredictionId>
Available on crate feature
points
only.Source§impl From<Vec<String>> for Collection<'_, PredictionOutcomeId>
Available on crate feature points
only.
impl From<Vec<String>> for Collection<'_, PredictionOutcomeId>
Available on crate feature
points
only.Source§impl From<Vec<String>> for Collection<'_, RedemptionId>
Available on crate feature points
only.
impl From<Vec<String>> for Collection<'_, RedemptionId>
Available on crate feature
points
only.Source§impl From<Vec<String>> for Collection<'_, StreamMarkerId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, StreamMarkerId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, StreamSegmentId>
Available on crate feature stream
only.
impl From<Vec<String>> for Collection<'_, StreamSegmentId>
Available on crate feature
stream
only.Source§impl From<Vec<String>> for Collection<'_, UnbanRequestId>
Available on crate feature moderation
only.
impl From<Vec<String>> for Collection<'_, UnbanRequestId>
Available on crate feature
moderation
only.Source§impl<T> From<Vec<T>> for Collection<'_, T>
impl<T> From<Vec<T>> for Collection<'_, T>
Source§impl<'a, T, A: Deref> FromIterator<A> for Collection<'a, T>
impl<'a, T, A: Deref> FromIterator<A> for Collection<'a, T>
Source§fn from_iter<I: IntoIterator<Item = A>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = A>>(iter: I) -> Self
Creates a value from an iterator. Read more
Source§impl<'s, 'c, T: Deref> IntoIterator for &'s Collection<'c, T>
impl<'s, 'c, T: Deref> IntoIterator for &'s Collection<'c, T>
Source§impl<T> PartialEq for Collection<'_, T>
impl<T> PartialEq for Collection<'_, T>
Source§impl<T: Deref> Serialize for Collection<'_, T>
Available on crate feature serde
only.
impl<T: Deref> Serialize for Collection<'_, T>
Available on crate feature
serde
only.impl<T> Eq for Collection<'_, T>
Auto Trait Implementations§
impl<'c, T> !Freeze for Collection<'c, T>
impl<'c, T> !RefUnwindSafe for Collection<'c, T>
impl<'c, T> !Send for Collection<'c, T>
impl<'c, T> !Sync for Collection<'c, T>
impl<'c, T> !Unpin for Collection<'c, T>
impl<'c, T> !UnwindSafe for Collection<'c, T>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)