Enum paralegal_spdg::TargetUse
source · pub enum TargetUse {
Return,
Assign,
MutArg(u8),
}
Expand description
Additional information about this mutation.
Variants§
Return
A function returned, assigning to it’s return destination
Assign
This mutation is a non-function assign
MutArg(u8)
A mutable argument was modified by a function call
Implementations§
source§impl TargetUse
impl TargetUse
sourcepub const fn is_return(&self) -> bool
pub const fn is_return(&self) -> bool
Returns true if the enum is TargetUse::Return otherwise false
sourcepub const fn is_assign(&self) -> bool
pub const fn is_assign(&self) -> bool
Returns true if the enum is TargetUse::Assign otherwise false
sourcepub const fn is_mut_arg(&self) -> bool
pub const fn is_mut_arg(&self) -> bool
Returns true if the enum is TargetUse::MutArg otherwise false
Trait Implementations§
source§impl<'de> Deserialize<'de> for TargetUse
impl<'de> Deserialize<'de> for TargetUse
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<TargetUse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<TargetUse, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<TargetUse> for TargetUse
impl PartialEq<TargetUse> for TargetUse
source§impl Serialize for TargetUse
impl Serialize for TargetUse
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for TargetUse
impl Eq for TargetUse
impl StructuralEq for TargetUse
impl StructuralPartialEq for TargetUse
Auto Trait Implementations§
impl RefUnwindSafe for TargetUse
impl Send for TargetUse
impl Sync for TargetUse
impl Unpin for TargetUse
impl UnwindSafe for TargetUse
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.