Enum rustdoc_json_types::GenericArg
source · pub enum GenericArg {
Lifetime(String),
Type(Type),
Const(Constant),
Infer,
}
Expand description
One argument in a list of generic arguments to a path segment.
Part of GenericArgs
.
Variants§
Lifetime(String)
A lifetime argument.
std::borrow::Cow<'static, str>
^^^^^^^
Type(Type)
A type argument.
std::borrow::Cow<'static, str>
^^^
Const(Constant)
A constant as a generic argument.
core::array::IntoIter<u32, { 640 * 1024 }>
^^^^^^^^^^^^^^
Infer
A generic argument that’s explicitly set to be inferred.
std::vec::Vec::<_>::new()
^
Trait Implementations§
source§impl Clone for GenericArg
impl Clone for GenericArg
source§fn clone(&self) -> GenericArg
fn clone(&self) -> GenericArg
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 GenericArg
impl Debug for GenericArg
source§impl<'de> Deserialize<'de> for GenericArg
impl<'de> Deserialize<'de> for GenericArg
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 GenericArg
impl Hash for GenericArg
source§impl PartialEq for GenericArg
impl PartialEq for GenericArg
source§impl Serialize for GenericArg
impl Serialize for GenericArg
impl Eq for GenericArg
impl StructuralPartialEq for GenericArg
Auto Trait Implementations§
impl Freeze for GenericArg
impl RefUnwindSafe for GenericArg
impl Send for GenericArg
impl Sync for GenericArg
impl Unpin for GenericArg
impl UnwindSafe for GenericArg
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
)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: 96 bytes
Size for each variant:
Lifetime
: 32 bytesType
: 96 bytesConst
: 64 bytesInfer
: 0 bytes