pub struct RemoveCallArgOp {
pub call_name: String,
pub arg_index: usize,
pub call_type: Option<String>,
pub content_filter: Option<String>,
}Expand description
Remove an argument at a specific index from function or method calls
Fields§
§call_name: StringName of the function or method to target
arg_index: usizeIndex of the argument to remove (0-based)
call_type: Option<String>Filter to “function” or “method” calls only (None = both)
content_filter: Option<String>Filter call sites by content substring
Trait Implementations§
Source§impl Clone for RemoveCallArgOp
impl Clone for RemoveCallArgOp
Source§fn clone(&self) -> RemoveCallArgOp
fn clone(&self) -> RemoveCallArgOp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RemoveCallArgOp
impl Debug for RemoveCallArgOp
Source§impl<'de> Deserialize<'de> for RemoveCallArgOp
impl<'de> Deserialize<'de> for RemoveCallArgOp
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
Auto Trait Implementations§
impl Freeze for RemoveCallArgOp
impl RefUnwindSafe for RemoveCallArgOp
impl Send for RemoveCallArgOp
impl Sync for RemoveCallArgOp
impl Unpin for RemoveCallArgOp
impl UnsafeUnpin for RemoveCallArgOp
impl UnwindSafe for RemoveCallArgOp
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