pub enum PreciseCapturingArg {
Lifetime(String),
Param(String),
}
Expand description
One precise capturing argument. See the rust reference.
Variants§
Lifetime(String)
A lifetime.
pub fn hello<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}
// ^^
Param(String)
A type or constant parameter.
pub fn hello<'a, T, const N: usize>() -> impl Sized + use<'a, T, N> {}
// ^ ^
Trait Implementations§
Source§impl Clone for PreciseCapturingArg
impl Clone for PreciseCapturingArg
Source§fn clone(&self) -> PreciseCapturingArg
fn clone(&self) -> PreciseCapturingArg
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PreciseCapturingArg
impl Debug for PreciseCapturingArg
Source§impl<'de> Deserialize<'de> for PreciseCapturingArg
impl<'de> Deserialize<'de> for PreciseCapturingArg
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 Hash for PreciseCapturingArg
impl Hash for PreciseCapturingArg
Source§impl PartialEq for PreciseCapturingArg
impl PartialEq for PreciseCapturingArg
Source§impl Serialize for PreciseCapturingArg
impl Serialize for PreciseCapturingArg
impl Eq for PreciseCapturingArg
impl StructuralPartialEq for PreciseCapturingArg
Auto Trait Implementations§
impl Freeze for PreciseCapturingArg
impl RefUnwindSafe for PreciseCapturingArg
impl Send for PreciseCapturingArg
impl Sync for PreciseCapturingArg
impl Unpin for PreciseCapturingArg
impl UnwindSafe for PreciseCapturingArg
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
Lifetime
: 24 bytesParam
: 24 bytes