pub trait IntoBoundedStatic {
type Static: 'static;
// Required method
fn into_static(self) -> Self::Static;
}Expand description
A trait for converting an owned T into an owned T such that T: 'static.
See the module level documentation for details.
Required Associated Types§
Required Methods§
Sourcefn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned T into an owned T such that T: 'static.
Implementations on Foreign Types§
Source§impl IntoBoundedStatic for &'static str
No-op IntoBoundedStatic impl for converting &'static str into &'static str.
impl IntoBoundedStatic for &'static str
No-op IntoBoundedStatic impl for converting &'static str into &'static str.
Source§impl IntoBoundedStatic for Month
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Month
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for Weekday
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Weekday
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for bool
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for bool
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for char
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for char
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for f32
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for f32
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for f64
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for f64
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for i8
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for i8
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for i16
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for i16
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for i32
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for i32
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for i64
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for i64
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for i128
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for i128
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for isize
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for isize
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for u8
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for u8
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for u16
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for u16
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for u32
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for u32
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for u64
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for u64
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for u128
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for u128
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for ()
No-op IntoBoundedStatic impl for unit type ().
impl IntoBoundedStatic for ()
No-op IntoBoundedStatic impl for unit type ().
Source§impl IntoBoundedStatic for usize
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for usize
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for String
Available on crate feature alloc only.No-op IntoBoundedStatic impl for String.
impl IntoBoundedStatic for String
alloc only.No-op IntoBoundedStatic impl for String.
Source§impl IntoBoundedStatic for Months
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Months
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NaiveDate
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NaiveDate
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NaiveDateTime
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NaiveDateTime
No-op IntoBoundedStatic impl for this Copy type.
type Static = NaiveDateTime
fn into_static(self) -> Self::Static
Source§impl IntoBoundedStatic for IsoWeek
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for IsoWeek
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for Days
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Days
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NaiveTime
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NaiveTime
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for FixedOffset
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for FixedOffset
No-op IntoBoundedStatic impl for this Copy type.
type Static = FixedOffset
fn into_static(self) -> Self::Static
Source§impl IntoBoundedStatic for Local
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Local
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for Utc
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for Utc
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for TimeDelta
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for TimeDelta
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for SmolStr
Available on crate feature smol_str only.No-op IntoBoundedStatic impl for smol_str::SmolStr.
impl IntoBoundedStatic for SmolStr
smol_str only.No-op IntoBoundedStatic impl for smol_str::SmolStr.
Source§impl IntoBoundedStatic for NonZeroI8
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroI8
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroI16
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroI16
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroI32
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroI32
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroI64
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroI64
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroI128
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroI128
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroIsize
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroIsize
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroU8
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroU8
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroU16
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroU16
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroU32
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroU32
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroU64
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroU64
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroU128
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroU128
No-op IntoBoundedStatic impl for this Copy type.
Source§impl IntoBoundedStatic for NonZeroUsize
No-op IntoBoundedStatic impl for this Copy type.
impl IntoBoundedStatic for NonZeroUsize
No-op IntoBoundedStatic impl for this Copy type.
Source§impl<A> IntoBoundedStatic for SmallVec<A>
Available on crate feature smallvec only.No-op IntoBoundedStatic impl for smallvec::SmallVec.
impl<A> IntoBoundedStatic for SmallVec<A>
smallvec only.No-op IntoBoundedStatic impl for smallvec::SmallVec.
Source§impl<K, V> IntoBoundedStatic for BTreeMap<K, V>
Available on crate feature collections only.Blanket IntoBoundedStatic impl for converting BTreeMap<K, V> into BTreeMap<K, V>: 'static.
impl<K, V> IntoBoundedStatic for BTreeMap<K, V>
collections only.Blanket IntoBoundedStatic impl for converting BTreeMap<K, V> into BTreeMap<K, V>: 'static.
type Static = BTreeMap<<K as IntoBoundedStatic>::Static, <V as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<K, V, S> IntoBoundedStatic for HashMap<K, V, S>where
K: IntoBoundedStatic,
K::Static: Eq + Hash,
V: IntoBoundedStatic,
S: ToBoundedStatic,
S::Static: BuildHasher,
Available on crate feature std only.Blanket IntoBoundedStatic impl for for converting HashMap<K, V> into HashMap<K, V>: 'static.
impl<K, V, S> IntoBoundedStatic for HashMap<K, V, S>where
K: IntoBoundedStatic,
K::Static: Eq + Hash,
V: IntoBoundedStatic,
S: ToBoundedStatic,
S::Static: BuildHasher,
std only.Blanket IntoBoundedStatic impl for for converting HashMap<K, V> into HashMap<K, V>: 'static.
type Static = HashMap<<K as IntoBoundedStatic>::Static, <V as IntoBoundedStatic>::Static, <S as ToBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<K, V, S> IntoBoundedStatic for AHashMap<K, V, S>where
K: IntoBoundedStatic,
K::Static: Eq + Hash,
V: IntoBoundedStatic,
S: ToBoundedStatic,
S::Static: BuildHasher,
Available on crate features ahash and std only.Blanket IntoBoundedStatic impl for converting ahash::AHashMap<K, V, S> into ahash::AHashMap<K, V, S>: 'static.
impl<K, V, S> IntoBoundedStatic for AHashMap<K, V, S>where
K: IntoBoundedStatic,
K::Static: Eq + Hash,
V: IntoBoundedStatic,
S: ToBoundedStatic,
S::Static: BuildHasher,
ahash and std only.Blanket IntoBoundedStatic impl for converting ahash::AHashMap<K, V, S> into ahash::AHashMap<K, V, S>: 'static.
type Static = AHashMap<<K as IntoBoundedStatic>::Static, <V as IntoBoundedStatic>::Static, <S as ToBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<Mode> IntoBoundedStatic for SmartString<Mode>where
Mode: SmartStringMode + 'static,
Available on crate feature smartstring only.No-op IntoBoundedStatic impl for smartstring::SmartString.
impl<Mode> IntoBoundedStatic for SmartString<Mode>where
Mode: SmartStringMode + 'static,
smartstring only.No-op IntoBoundedStatic impl for smartstring::SmartString.
type Static = SmartString<Mode>
fn into_static(self) -> Self::Static
Source§impl<T0: IntoBoundedStatic> IntoBoundedStatic for (T0,)
Blanket IntoBoundedStatic impl for converting tuple (T0,) into (T0,): 'static
impl<T0: IntoBoundedStatic> IntoBoundedStatic for (T0,)
Blanket IntoBoundedStatic impl for converting tuple (T0,) into (T0,): 'static
type Static = (<T0 as IntoBoundedStatic>::Static,)
fn into_static(self) -> Self::Static
Source§impl<T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T1, T0,) into (T1, T0,): 'static
impl<T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T1, T0,) into (T1, T0,): 'static
type Static = (<T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T2, T1, T0,) into (T2, T1, T0,): 'static
impl<T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T2, T1, T0,) into (T2, T1, T0,): 'static
type Static = (<T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T3, T2, T1, T0,) into (T3, T2, T1, T0,): 'static
impl<T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T3, T2, T1, T0,) into (T3, T2, T1, T0,): 'static
type Static = (<T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T4, T3, T2, T1, T0,) into (T4, T3, T2, T1, T0,): 'static
impl<T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T4, T3, T2, T1, T0,) into (T4, T3, T2, T1, T0,): 'static
type Static = (<T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T5, T4, T3, T2, T1, T0,) into (T5, T4, T3, T2, T1, T0,): 'static
impl<T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T5, T4, T3, T2, T1, T0,) into (T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T6, T5, T4, T3, T2, T1, T0,) into (T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T6, T5, T4, T3, T2, T1, T0,) into (T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T7, T6, T5, T4, T3, T2, T1, T0,) into (T7, T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T7, T6, T5, T4, T3, T2, T1, T0,) into (T7, T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T7 as IntoBoundedStatic>::Static, <T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T8 as IntoBoundedStatic>::Static, <T7 as IntoBoundedStatic>::Static, <T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T9 as IntoBoundedStatic>::Static, <T8 as IntoBoundedStatic>::Static, <T7 as IntoBoundedStatic>::Static, <T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T10: IntoBoundedStatic, T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T10: IntoBoundedStatic, T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T10 as IntoBoundedStatic>::Static, <T9 as IntoBoundedStatic>::Static, <T8 as IntoBoundedStatic>::Static, <T7 as IntoBoundedStatic>::Static, <T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T11: IntoBoundedStatic, T10: IntoBoundedStatic, T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
impl<T11: IntoBoundedStatic, T10: IntoBoundedStatic, T9: IntoBoundedStatic, T8: IntoBoundedStatic, T7: IntoBoundedStatic, T6: IntoBoundedStatic, T5: IntoBoundedStatic, T4: IntoBoundedStatic, T3: IntoBoundedStatic, T2: IntoBoundedStatic, T1: IntoBoundedStatic, T0: IntoBoundedStatic> IntoBoundedStatic for (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0)
Blanket IntoBoundedStatic impl for converting tuple (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,) into (T11, T10, T9, T8, T7, T6, T5, T4, T3, T2, T1, T0,): 'static
type Static = (<T11 as IntoBoundedStatic>::Static, <T10 as IntoBoundedStatic>::Static, <T9 as IntoBoundedStatic>::Static, <T8 as IntoBoundedStatic>::Static, <T7 as IntoBoundedStatic>::Static, <T6 as IntoBoundedStatic>::Static, <T5 as IntoBoundedStatic>::Static, <T4 as IntoBoundedStatic>::Static, <T3 as IntoBoundedStatic>::Static, <T2 as IntoBoundedStatic>::Static, <T1 as IntoBoundedStatic>::Static, <T0 as IntoBoundedStatic>::Static)
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for Cow<'_, T>
Available on crate feature alloc only.Blanket IntoBoundedStatic impl for converting Cow<'a, T: ?Sized> into Cow<'static, T: ?Sized>.
impl<T> IntoBoundedStatic for Cow<'_, T>
alloc only.Blanket IntoBoundedStatic impl for converting Cow<'a, T: ?Sized> into Cow<'static, T: ?Sized>.
Source§impl<T> IntoBoundedStatic for Option<T>where
T: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting Option<T> into Option<T>: 'static.
impl<T> IntoBoundedStatic for Option<T>where
T: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting Option<T> into Option<T>: 'static.
type Static = Option<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for Box<T>where
T: IntoBoundedStatic,
Available on crate feature alloc only.Blanket IntoBoundedStatic impl for converting Box<T> into Box<T>: 'static.
impl<T> IntoBoundedStatic for Box<T>where
T: IntoBoundedStatic,
alloc only.Blanket IntoBoundedStatic impl for converting Box<T> into Box<T>: 'static.
type Static = Box<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for BinaryHeap<T>
Available on crate feature collections only.Blanket IntoBoundedStatic impl for converting BinaryHeap<T> into BinaryHeap<T>: 'static.
impl<T> IntoBoundedStatic for BinaryHeap<T>
collections only.Blanket IntoBoundedStatic impl for converting BinaryHeap<T> into BinaryHeap<T>: 'static.
type Static = BinaryHeap<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for BTreeSet<T>
Available on crate feature collections only.Blanket IntoBoundedStatic impl for converting BTreeSet<T> into BTreeSet<T>: 'static.
impl<T> IntoBoundedStatic for BTreeSet<T>
collections only.Blanket IntoBoundedStatic impl for converting BTreeSet<T> into BTreeSet<T>: 'static.
type Static = BTreeSet<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for LinkedList<T>where
T: IntoBoundedStatic,
Available on crate feature collections only.Blanket IntoBoundedStatic impl for converting LinkedList<T> into LinkedList<T>: 'static.
impl<T> IntoBoundedStatic for LinkedList<T>where
T: IntoBoundedStatic,
collections only.Blanket IntoBoundedStatic impl for converting LinkedList<T> into LinkedList<T>: 'static.
type Static = LinkedList<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for VecDeque<T>where
T: IntoBoundedStatic,
Available on crate feature collections only.Blanket IntoBoundedStatic impl for converting VecDeque<T> into VecDeque<T>: 'static.
impl<T> IntoBoundedStatic for VecDeque<T>where
T: IntoBoundedStatic,
collections only.Blanket IntoBoundedStatic impl for converting VecDeque<T> into VecDeque<T>: 'static.
type Static = VecDeque<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T> IntoBoundedStatic for Vec<T>where
T: IntoBoundedStatic,
Available on crate feature alloc only.Blanket IntoBoundedStatic impl for converting Vec<T> into Vec<T>: 'static.
impl<T> IntoBoundedStatic for Vec<T>where
T: IntoBoundedStatic,
alloc only.Blanket IntoBoundedStatic impl for converting Vec<T> into Vec<T>: 'static.
type Static = Vec<<T as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T, E> IntoBoundedStatic for Result<T, E>where
T: IntoBoundedStatic,
E: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting Result<T, E> into Result<T, E>: 'static.
impl<T, E> IntoBoundedStatic for Result<T, E>where
T: IntoBoundedStatic,
E: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting Result<T, E> into Result<T, E>: 'static.
type Static = Result<<T as IntoBoundedStatic>::Static, <E as IntoBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T, S> IntoBoundedStatic for HashSet<T, S>
Available on crate feature std only.Blanket IntoBoundedStatic impl for converting HashSet<T> into HashSet<T>: 'static.
impl<T, S> IntoBoundedStatic for HashSet<T, S>
std only.Blanket IntoBoundedStatic impl for converting HashSet<T> into HashSet<T>: 'static.
type Static = HashSet<<T as IntoBoundedStatic>::Static, <S as ToBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T, S> IntoBoundedStatic for AHashSet<T, S>
Available on crate features ahash and std only.Blanket IntoBoundedStatic impl for converting ahash::AHashSet<T, S> into ahash::AHashSet<T, S>: 'static.
impl<T, S> IntoBoundedStatic for AHashSet<T, S>
ahash and std only.Blanket IntoBoundedStatic impl for converting ahash::AHashSet<T, S> into ahash::AHashSet<T, S>: 'static.
type Static = AHashSet<<T as IntoBoundedStatic>::Static, <S as ToBoundedStatic>::Static>
fn into_static(self) -> Self::Static
Source§impl<T, const N: usize> IntoBoundedStatic for [T; N]where
T: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting [T; const N: usize] into [T; const N: usize]: 'static.
impl<T, const N: usize> IntoBoundedStatic for [T; N]where
T: IntoBoundedStatic,
Blanket IntoBoundedStatic impl for converting [T; const N: usize] into [T; const N: usize]: 'static.
type Static = [<T as IntoBoundedStatic>::Static; N]
fn into_static(self) -> Self::Static
Source§impl<Tz> IntoBoundedStatic for DateTime<Tz>
Available on crate feature chrono only.Blanket IntoBoundedStatic impl for converting chrono::DateTime<Tz> into chrono::DateTime<Tz>: 'static.
impl<Tz> IntoBoundedStatic for DateTime<Tz>
chrono only.Blanket IntoBoundedStatic impl for converting chrono::DateTime<Tz> into chrono::DateTime<Tz>: 'static.