pub enum InsertionPoint {
Before,
After,
}Expand description
Insertion point where the instrumentation for an instruction should be inserted
Variants§
Trait Implementations§
Source§impl Clone for InsertionPoint
impl Clone for InsertionPoint
Source§fn clone(&self) -> InsertionPoint
fn clone(&self) -> InsertionPoint
Returns a duplicate 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 InsertionPoint
impl Debug for InsertionPoint
Source§impl<'de> Deserialize<'de> for InsertionPoint
impl<'de> Deserialize<'de> for InsertionPoint
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 InsertionPoint
impl Hash for InsertionPoint
Source§impl Ord for InsertionPoint
impl Ord for InsertionPoint
Source§fn cmp(&self, other: &InsertionPoint) -> Ordering
fn cmp(&self, other: &InsertionPoint) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InsertionPoint
impl PartialEq for InsertionPoint
Source§impl PartialOrd for InsertionPoint
impl PartialOrd for InsertionPoint
Source§impl Serialize for InsertionPoint
impl Serialize for InsertionPoint
impl Copy for InsertionPoint
impl Eq for InsertionPoint
impl StructuralPartialEq for InsertionPoint
Auto Trait Implementations§
impl Freeze for InsertionPoint
impl RefUnwindSafe for InsertionPoint
impl Send for InsertionPoint
impl Sync for InsertionPoint
impl Unpin for InsertionPoint
impl UnwindSafe for InsertionPoint
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