Struct stack_graphs::partial::SymbolStackVariable [−][src]
#[repr(transparent)]pub struct SymbolStackVariable(_);
Expand description
Represents an unknown list of scoped symbols.
Implementations
Applies an offset to this variable.
When concatenating partial paths, we have to ensure that the left- and right-hand sides have non-overlapping sets of variables. To do this, we find the maximum value of any variable on the left-hand side, and add this “offset” to the values of all of the variables on the right-hand side.
Trait Implementations
type Output = MaybeUninit<Self>
type Output = MaybeUninit<Self>
The type that is used to store values of Self
inside of a ControlledOption
. This might
be Self
itself, if your niche is a valid instance of the type, but which violates some
runtime constraint. But if you cannot easily create your niche as an instance of Self
,
you can use some other type, you can use some other type instead. Read more
Returns the niche value for this type that should be used to represent None
for a
ControlledOption
. Read more
Returns whether value is the niche value for this type.
Transforms a non-niche value of this type into its Output
type. When Output
is Self
,
this will be the identity function. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for SymbolStackVariable
impl Send for SymbolStackVariable
impl Sync for SymbolStackVariable
impl Unpin for SymbolStackVariable
impl UnwindSafe for SymbolStackVariable
Blanket Implementations
Mutably borrows from an owned value. Read more