Struct dfir_lang::graph::OpInstGenerics
source · pub struct OpInstGenerics {
pub generic_args: Option<Punctuated<GenericArgument, Comma>>,
pub persistence_args: Vec<Persistence>,
pub type_args: Vec<Type>,
}
Expand description
Operator generic arguments, split into specific categories.
Fields§
§generic_args: Option<Punctuated<GenericArgument, Comma>>
Operator generic (type or lifetime) arguments.
persistence_args: Vec<Persistence>
Lifetime persistence arguments. Corresponds to a prefix of Self::generic_args
.
type_args: Vec<Type>
Type persistence arguments. Corersponds to a (suffix) of Self::generic_args
.
Trait Implementations§
source§impl Clone for OpInstGenerics
impl Clone for OpInstGenerics
source§fn clone(&self) -> OpInstGenerics
fn clone(&self) -> OpInstGenerics
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 moreAuto Trait Implementations§
impl Freeze for OpInstGenerics
impl RefUnwindSafe for OpInstGenerics
impl !Send for OpInstGenerics
impl !Sync for OpInstGenerics
impl Unpin for OpInstGenerics
impl UnwindSafe for OpInstGenerics
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
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more