diff --git a/src/csharp/Intel/Generator/Encoder/Rust/RustInstrCreateGen.cs b/src/csharp/Intel/Generator/Encoder/Rust/RustInstrCreateGen.cs index 6c6ccafe4..30c88385a 100644 --- a/src/csharp/Intel/Generator/Encoder/Rust/RustInstrCreateGen.cs +++ b/src/csharp/Intel/Generator/Encoder/Rust/RustInstrCreateGen.cs @@ -178,7 +178,7 @@ namespace Generator.Encoder.Rust { const TryMethodKind kind = TryMethodKind.Panic; Action docsWriteError = () => writeError(kind); WriteDocs(ctx.Writer, ctx.Method, kind, docsWriteError); - ctx.Writer.WriteLine($"#[deprecated(since = \"1.10.0\", note = \"Use {ctx.TryMethodName}() instead\")]"); + ctx.Writer.WriteLine($"#[deprecated(since = \"1.10.0\", note = \"This method can panic, use {ctx.TryMethodName}() instead\")]"); WriteMethod(ctx.Writer, ctx.Method, ctx.MethodName, kind, GenTryFlags.None); using (ctx.Writer.Indent()) { sb.Clear(); diff --git a/src/rust/iced-x86/src/decoder/mod.rs b/src/rust/iced-x86/src/decoder/mod.rs index 69d5211a4..f28475d65 100644 --- a/src/rust/iced-x86/src/decoder/mod.rs +++ b/src/rust/iced-x86/src/decoder/mod.rs @@ -701,7 +701,7 @@ impl<'a> Decoder<'a> { /// assert_eq!(3, decoder.position()); /// ``` #[inline] - #[deprecated(since = "1.11.0", note = "Use try_set_position() instead")] + #[deprecated(since = "1.11.0", note = "This method can panic, use try_set_position() instead")] pub fn set_position(&mut self, new_pos: usize) { self.try_set_position(new_pos).unwrap(); } diff --git a/src/rust/iced-x86/src/encoder/mod.rs b/src/rust/iced-x86/src/encoder/mod.rs index 6c9709736..4de68680c 100644 --- a/src/rust/iced-x86/src/encoder/mod.rs +++ b/src/rust/iced-x86/src/encoder/mod.rs @@ -193,7 +193,7 @@ impl Encoder { /// * `bitness`: 16, 32 or 64 /// * `capacity`: Initial capacity of the `u8` buffer #[cfg_attr(has_must_use, must_use)] - #[deprecated(since = "1.10.0", note = "Use try_with_capacity() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_capacity() instead")] #[inline] pub fn with_capacity(bitness: u32, capacity: usize) -> Self { Self::try_with_capacity(bitness, capacity).unwrap() diff --git a/src/rust/iced-x86/src/encoder/op_code.rs b/src/rust/iced-x86/src/encoder/op_code.rs index b0d9455b3..0bbe12922 100644 --- a/src/rust/iced-x86/src/encoder/op_code.rs +++ b/src/rust/iced-x86/src/encoder/op_code.rs @@ -1224,7 +1224,7 @@ impl OpCodeInfo { /// * `operand`: Operand number, 0-4 #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.11.0", note = "Use try_op_kind() instead")] + #[deprecated(since = "1.11.0", note = "This method can panic, use try_op_kind() instead")] pub fn op_kind(&self, operand: u32) -> OpCodeOperandKind { self.try_op_kind(operand).unwrap() } diff --git a/src/rust/iced-x86/src/info/mod.rs b/src/rust/iced-x86/src/info/mod.rs index ccc8bbe1f..bb47d698c 100644 --- a/src/rust/iced-x86/src/info/mod.rs +++ b/src/rust/iced-x86/src/info/mod.rs @@ -226,7 +226,7 @@ impl UsedMemory { /// * Arg 3: `element_size`: Only used if it's a vsib memory operand. Size in bytes of elements in vector index register (4 or 8). #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.11.0", note = "Use try_virtual_address() instead")] + #[deprecated(since = "1.11.0", note = "This method can panic, use try_virtual_address() instead")] pub fn virtual_address(&self, element_index: usize, mut get_register_value: F) -> u64 where F: FnMut(Register, usize, usize) -> u64, @@ -497,7 +497,7 @@ impl InstructionInfo { /// * `operand`: Operand number, 0-4 #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.11.0", note = "Use try_op_access() instead")] + #[deprecated(since = "1.11.0", note = "This method can panic, use try_op_access() instead")] pub fn op_access(&self, operand: u32) -> OpAccess { self.try_op_access(operand).unwrap() } diff --git a/src/rust/iced-x86/src/instruction.rs b/src/rust/iced-x86/src/instruction.rs index 8b763bbfa..6477a5ac1 100644 --- a/src/rust/iced-x86/src/instruction.rs +++ b/src/rust/iced-x86/src/instruction.rs @@ -584,7 +584,7 @@ impl Instruction { /// # Arguments /// /// * `new_value`: new value - #[deprecated(since = "1.10.0", note = "Use try_set_op4_kind() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_op4_kind() instead")] #[inline] pub fn set_op4_kind(&mut self, new_value: OpKind) { self.try_set_op4_kind(new_value).unwrap() @@ -643,7 +643,7 @@ impl Instruction { /// ``` #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.10.0", note = "Use try_op_kind() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_op_kind() instead")] pub fn op_kind(&self, operand: u32) -> OpKind { self.try_op_kind(operand).unwrap() } @@ -700,7 +700,7 @@ impl Instruction { /// /// * `operand`: Operand number, 0-4 /// * `op_kind`: Operand kind - #[deprecated(since = "1.10.0", note = "Use try_set_op_kind() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_op_kind() instead")] #[inline] pub fn set_op_kind(&mut self, operand: u32, op_kind: OpKind) { self.try_set_op_kind(operand, op_kind).unwrap() @@ -1012,7 +1012,7 @@ impl Instruction { /// * `operand`: Operand number, 0-4 /// * `new_value`: Immediate #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_immediate_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_immediate_i32() instead")] pub fn set_immediate_i32(&mut self, operand: u32, new_value: i32) { self.try_set_immediate_i32(operand, new_value).unwrap(); } @@ -1043,7 +1043,7 @@ impl Instruction { /// * `operand`: Operand number, 0-4 /// * `new_value`: Immediate #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_immediate_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_immediate_u32() instead")] pub fn set_immediate_u32(&mut self, operand: u32, new_value: u32) { self.try_set_immediate_u32(operand, new_value).unwrap(); } @@ -1074,7 +1074,7 @@ impl Instruction { /// * `operand`: Operand number, 0-4 /// * `new_value`: Immediate #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_immediate_i64() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_immediate_i64() instead")] pub fn set_immediate_i64(&mut self, operand: u32, new_value: i64) { self.try_set_immediate_i64(operand, new_value).unwrap() } @@ -1105,7 +1105,7 @@ impl Instruction { /// * `operand`: Operand number, 0-4 /// * `new_value`: Immediate #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_immediate_u64() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_immediate_u64() instead")] pub fn set_immediate_u64(&mut self, operand: u32, new_value: u64) { self.try_set_immediate_u64(operand, new_value).unwrap() } @@ -1684,7 +1684,7 @@ impl Instruction { /// /// * `new_value`: New value #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_op4_register() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_op4_register() instead")] pub fn set_op4_register(&mut self, new_value: Register) { self.try_set_op4_register(new_value).unwrap(); } @@ -1743,7 +1743,7 @@ impl Instruction { /// ``` #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.10.0", note = "Use try_op_register() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_op_register() instead")] pub fn op_register(&self, operand: u32) -> Register { self.try_op_register(operand).unwrap() } @@ -1802,7 +1802,7 @@ impl Instruction { /// * `operand`: Operand number, 0-4 /// * `new_value`: New value #[inline] - #[deprecated(since = "1.10.0", note = "Use try_set_op_register() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_op_register() instead")] pub fn set_op_register(&mut self, operand: u32, new_value: Register) { self.try_set_op_register(operand, new_value).unwrap(); } @@ -1994,7 +1994,7 @@ impl Instruction { /// /// * `index`: Index (0-15) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_byte_value_i8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_byte_value_i8() instead")] #[inline] pub fn set_declare_byte_value_i8(&mut self, index: usize, new_value: i8) { self.try_set_declare_byte_value_i8(index, new_value).unwrap(); @@ -2037,7 +2037,7 @@ impl Instruction { /// /// * `index`: Index (0-15) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_byte_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_byte_value() instead")] #[inline] pub fn set_declare_byte_value(&mut self, index: usize, new_value: u8) { self.try_set_declare_byte_value(index, new_value).unwrap(); @@ -2102,7 +2102,7 @@ impl Instruction { /// /// * `index`: Index (0-15) #[cfg_attr(has_must_use, must_use)] - #[deprecated(since = "1.10.0", note = "Use try_get_declare_byte_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_get_declare_byte_value() instead")] #[inline] pub fn get_declare_byte_value(&self, index: usize) -> u8 { self.try_get_declare_byte_value(index).unwrap() @@ -2161,7 +2161,7 @@ impl Instruction { /// /// * `index`: Index (0-7) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_word_value_i16() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_word_value_i16() instead")] #[inline] pub fn set_declare_word_value_i16(&mut self, index: usize, new_value: i16) { self.try_set_declare_word_value_i16(index, new_value).unwrap(); @@ -2204,7 +2204,7 @@ impl Instruction { /// /// * `index`: Index (0-7) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_word_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_word_value() instead")] #[inline] pub fn set_declare_word_value(&mut self, index: usize, new_value: u16) { self.try_set_declare_word_value(index, new_value).unwrap(); @@ -2270,7 +2270,7 @@ impl Instruction { /// /// * `index`: Index (0-7) #[cfg_attr(has_must_use, must_use)] - #[deprecated(since = "1.10.0", note = "Use try_get_declare_word_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_get_declare_word_value() instead")] #[inline] pub fn get_declare_word_value(&self, index: usize) -> u16 { self.try_get_declare_word_value(index).unwrap() @@ -2321,7 +2321,7 @@ impl Instruction { /// /// * `index`: Index (0-3) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_dword_value_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_dword_value_i32() instead")] #[inline] pub fn set_declare_dword_value_i32(&mut self, index: usize, new_value: i32) { self.try_set_declare_dword_value_i32(index, new_value).unwrap(); @@ -2364,7 +2364,7 @@ impl Instruction { /// /// * `index`: Index (0-3) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_dword_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_dword_value() instead")] #[inline] pub fn set_declare_dword_value(&mut self, index: usize, new_value: u32) { self.try_set_declare_dword_value(index, new_value).unwrap(); @@ -2426,7 +2426,7 @@ impl Instruction { /// /// * `index`: Index (0-3) #[cfg_attr(has_must_use, must_use)] - #[deprecated(since = "1.10.0", note = "Use try_get_declare_dword_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_get_declare_dword_value() instead")] #[inline] pub fn get_declare_dword_value(&self, index: usize) -> u32 { self.try_get_declare_dword_value(index).unwrap() @@ -2473,7 +2473,7 @@ impl Instruction { /// /// * `index`: Index (0-1) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_qword_value_i64() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_qword_value_i64() instead")] #[inline] pub fn set_declare_qword_value_i64(&mut self, index: usize, new_value: i64) { self.try_set_declare_qword_value_i64(index, new_value).unwrap(); @@ -2516,7 +2516,7 @@ impl Instruction { /// /// * `index`: Index (0-1) /// * `new_value`: New value - #[deprecated(since = "1.10.0", note = "Use try_set_declare_qword_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_set_declare_qword_value() instead")] #[inline] pub fn set_declare_qword_value(&mut self, index: usize, new_value: u64) { self.try_set_declare_qword_value(index, new_value).unwrap(); @@ -2578,7 +2578,7 @@ impl Instruction { /// /// * `index`: Index (0-1) #[cfg_attr(has_must_use, must_use)] - #[deprecated(since = "1.10.0", note = "Use try_get_declare_qword_value() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_get_declare_qword_value() instead")] #[inline] pub fn get_declare_qword_value(&self, index: usize) -> u64 { self.try_get_declare_qword_value(index).unwrap() @@ -3091,7 +3091,7 @@ impl Instruction { /// ``` #[cfg_attr(has_must_use, must_use)] #[inline] - #[deprecated(since = "1.11.0", note = "Use try_virtual_address() instead")] + #[deprecated(since = "1.11.0", note = "This method can panic, use try_virtual_address() instead")] pub fn virtual_address(&self, operand: u32, element_index: usize, mut get_register_value: F) -> u64 where F: FnMut(Register, usize, usize) -> u64, @@ -4079,7 +4079,7 @@ impl Instruction { /// /// * `code`: Code value /// * `immediate`: op0: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4119,7 +4119,7 @@ impl Instruction { /// /// * `code`: Code value /// * `immediate`: op0: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4217,7 +4217,7 @@ impl Instruction { /// * `code`: Code value /// * `register`: op0: Register /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4263,7 +4263,7 @@ impl Instruction { /// * `code`: Code value /// * `register`: op0: Register /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4309,7 +4309,7 @@ impl Instruction { /// * `code`: Code value /// * `register`: op0: Register /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_i64() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_i64() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4355,7 +4355,7 @@ impl Instruction { /// * `code`: Code value /// * `register`: op0: Register /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_u64() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_u64() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4432,7 +4432,7 @@ impl Instruction { /// * `code`: Code value /// * `immediate`: op0: Immediate value /// * `register`: op1: Register - #[deprecated(since = "1.10.0", note = "Use try_with_i32_reg() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_i32_reg() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4478,7 +4478,7 @@ impl Instruction { /// * `code`: Code value /// * `immediate`: op0: Immediate value /// * `register`: op1: Register - #[deprecated(since = "1.10.0", note = "Use try_with_u32_reg() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_u32_reg() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4522,7 +4522,7 @@ impl Instruction { /// * `code`: Code value /// * `immediate1`: op0: Immediate value /// * `immediate2`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_i32_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_i32_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4566,7 +4566,7 @@ impl Instruction { /// * `code`: Code value /// * `immediate1`: op0: Immediate value /// * `immediate2`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_u32_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_u32_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4648,7 +4648,7 @@ impl Instruction { /// * `code`: Code value /// * `memory`: op0: Memory operand /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_mem_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_mem_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4699,7 +4699,7 @@ impl Instruction { /// * `code`: Code value /// * `memory`: op0: Memory operand /// * `immediate`: op1: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_mem_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_mem_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4782,7 +4782,7 @@ impl Instruction { /// * `register1`: op0: Register /// * `register2`: op1: Register /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4834,7 +4834,7 @@ impl Instruction { /// * `register1`: op0: Register /// * `register2`: op1: Register /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4920,7 +4920,7 @@ impl Instruction { /// * `register`: op0: Register /// * `immediate1`: op1: Immediate value /// * `immediate2`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_i32_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_i32_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -4970,7 +4970,7 @@ impl Instruction { /// * `register`: op0: Register /// * `immediate1`: op1: Immediate value /// * `immediate2`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_u32_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_u32_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5063,7 +5063,7 @@ impl Instruction { /// * `register`: op0: Register /// * `memory`: op1: Memory operand /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_mem_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_mem_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5120,7 +5120,7 @@ impl Instruction { /// * `register`: op0: Register /// * `memory`: op1: Memory operand /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_mem_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_mem_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5213,7 +5213,7 @@ impl Instruction { /// * `memory`: op0: Memory operand /// * `register`: op1: Register /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_mem_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_mem_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5270,7 +5270,7 @@ impl Instruction { /// * `memory`: op0: Memory operand /// * `register`: op1: Register /// * `immediate`: op2: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_mem_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_mem_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5364,7 +5364,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `register3`: op2: Register /// * `immediate`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5422,7 +5422,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `register3`: op2: Register /// * `immediate`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5519,7 +5519,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `immediate1`: op2: Immediate value /// * `immediate2`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_i32_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_i32_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5575,7 +5575,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `immediate1`: op2: Immediate value /// * `immediate2`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_u32_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_u32_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5679,7 +5679,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `memory`: op2: Memory operand /// * `immediate`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_mem_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_mem_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5742,7 +5742,7 @@ impl Instruction { /// * `register2`: op1: Register /// * `memory`: op2: Memory operand /// * `immediate`: op3: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_mem_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_mem_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5806,7 +5806,7 @@ impl Instruction { /// * `register3`: op2: Register /// * `register4`: op3: Register /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5870,7 +5870,7 @@ impl Instruction { /// * `register3`: op2: Register /// * `register4`: op3: Register /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -5939,7 +5939,7 @@ impl Instruction { /// * `register3`: op2: Register /// * `memory`: op3: Memory operand /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_mem_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_mem_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6008,7 +6008,7 @@ impl Instruction { /// * `register3`: op2: Register /// * `memory`: op3: Memory operand /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_reg_mem_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_reg_mem_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6077,7 +6077,7 @@ impl Instruction { /// * `memory`: op2: Memory operand /// * `register3`: op3: Register /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_mem_reg_i32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_mem_reg_i32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6146,7 +6146,7 @@ impl Instruction { /// * `memory`: op2: Memory operand /// * `register3`: op3: Register /// * `immediate`: op4: Immediate value - #[deprecated(since = "1.10.0", note = "Use try_with_reg_reg_mem_reg_u32() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_reg_reg_mem_reg_u32() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6187,7 +6187,7 @@ impl Instruction { /// /// * `code`: Code value /// * `target`: Target address - #[deprecated(since = "1.10.0", note = "Use try_with_branch() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_branch() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6231,7 +6231,7 @@ impl Instruction { /// * `code`: Code value /// * `selector`: Selector/segment value /// * `offset`: Offset - #[deprecated(since = "1.10.0", note = "Use try_with_far_branch() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_far_branch() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6290,7 +6290,7 @@ impl Instruction { /// /// * `bitness`: 16, 32, or 64 /// * `target`: Target address - #[deprecated(since = "1.10.0", note = "Use try_with_xbegin() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_xbegin() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6392,7 +6392,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_outsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_outsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6424,7 +6424,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_outsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_outsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6466,7 +6466,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_outsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_outsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6498,7 +6498,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_outsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_outsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6540,7 +6540,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_outsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_outsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6572,7 +6572,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_outsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_outsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6614,7 +6614,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_lodsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_lodsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6646,7 +6646,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_lodsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_lodsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6688,7 +6688,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_lodsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_lodsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6720,7 +6720,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_lodsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_lodsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6762,7 +6762,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_lodsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_lodsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6794,7 +6794,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_lodsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_lodsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6836,7 +6836,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_lodsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_lodsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6868,7 +6868,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_lodsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_lodsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6906,7 +6906,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_scasb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_scasb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6938,7 +6938,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_scasb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_scasb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -6970,7 +6970,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_scasb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_scasb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7008,7 +7008,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_scasw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_scasw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7040,7 +7040,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_scasw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_scasw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7072,7 +7072,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_scasw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_scasw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7110,7 +7110,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_scasd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_scasd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7142,7 +7142,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_scasd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_scasd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7174,7 +7174,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_scasd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_scasd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7212,7 +7212,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_scasq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_scasq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7244,7 +7244,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_scasq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_scasq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7276,7 +7276,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_scasq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_scasq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7314,7 +7314,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_insb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_insb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7346,7 +7346,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_insb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_insb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7384,7 +7384,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_insw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_insw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7416,7 +7416,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_insw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_insw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7454,7 +7454,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_insd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_insd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7486,7 +7486,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_insd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_insd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7524,7 +7524,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_stosb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_stosb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7556,7 +7556,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_stosb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_stosb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7594,7 +7594,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_stosw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_stosw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7626,7 +7626,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_stosw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_stosw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7664,7 +7664,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_stosd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_stosd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7696,7 +7696,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_stosd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_stosd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7734,7 +7734,7 @@ impl Instruction { /// * `rep_prefix`: Rep prefix or [`RepPrefixKind::None`] /// /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_stosq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_stosq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7766,7 +7766,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_stosq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_stosq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7808,7 +7808,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_cmpsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_cmpsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7840,7 +7840,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_cmpsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_cmpsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7872,7 +7872,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_cmpsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_cmpsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7914,7 +7914,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_cmpsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_cmpsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7946,7 +7946,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_cmpsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_cmpsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -7978,7 +7978,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_cmpsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_cmpsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8020,7 +8020,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_cmpsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_cmpsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8052,7 +8052,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_cmpsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_cmpsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8084,7 +8084,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_cmpsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_cmpsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8126,7 +8126,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_cmpsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_cmpsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8158,7 +8158,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repe_cmpsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repe_cmpsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8190,7 +8190,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_repne_cmpsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_repne_cmpsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8232,7 +8232,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_movsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_movsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8264,7 +8264,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_movsb() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_movsb() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8306,7 +8306,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_movsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_movsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8338,7 +8338,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_movsw() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_movsw() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8380,7 +8380,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_movsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_movsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8412,7 +8412,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_movsd() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_movsd() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8454,7 +8454,7 @@ impl Instruction { /// /// [`Register::None`]: enum.Register.html#variant.None /// [`RepPrefixKind::None`]: enum.RepPrefixKind.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_movsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_movsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8486,7 +8486,7 @@ impl Instruction { /// # Arguments /// /// * `address_size`: 16, 32, or 64 - #[deprecated(since = "1.10.0", note = "Use try_with_rep_movsq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_rep_movsq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8528,7 +8528,7 @@ impl Instruction { /// * `segment_prefix`: Segment override or [`Register::None`] /// /// [`Register::None`]: enum.Register.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_maskmovq() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_maskmovq() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8570,7 +8570,7 @@ impl Instruction { /// * `segment_prefix`: Segment override or [`Register::None`] /// /// [`Register::None`]: enum.Register.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_maskmovdqu() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_maskmovdqu() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8612,7 +8612,7 @@ impl Instruction { /// * `segment_prefix`: Segment override or [`Register::None`] /// /// [`Register::None`]: enum.Register.html#variant.None - #[deprecated(since = "1.10.0", note = "Use try_with_vmaskmovdqu() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_vmaskmovdqu() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8651,7 +8651,7 @@ impl Instruction { /// # Arguments /// /// * `b0`: Byte 0 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_1() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_1() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8693,7 +8693,7 @@ impl Instruction { /// /// * `b0`: Byte 0 /// * `b1`: Byte 1 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_2() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_2() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8738,7 +8738,7 @@ impl Instruction { /// * `b0`: Byte 0 /// * `b1`: Byte 1 /// * `b2`: Byte 2 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_3() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_3() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8786,7 +8786,7 @@ impl Instruction { /// * `b1`: Byte 1 /// * `b2`: Byte 2 /// * `b3`: Byte 3 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_4() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_4() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8837,7 +8837,7 @@ impl Instruction { /// * `b2`: Byte 2 /// * `b3`: Byte 3 /// * `b4`: Byte 4 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_5() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_5() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8891,7 +8891,7 @@ impl Instruction { /// * `b3`: Byte 3 /// * `b4`: Byte 4 /// * `b5`: Byte 5 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_6() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_6() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -8948,7 +8948,7 @@ impl Instruction { /// * `b4`: Byte 4 /// * `b5`: Byte 5 /// * `b6`: Byte 6 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_7() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_7() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9008,7 +9008,7 @@ impl Instruction { /// * `b5`: Byte 5 /// * `b6`: Byte 6 /// * `b7`: Byte 7 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_8() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9071,7 +9071,7 @@ impl Instruction { /// * `b6`: Byte 6 /// * `b7`: Byte 7 /// * `b8`: Byte 8 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_9() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_9() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9137,7 +9137,7 @@ impl Instruction { /// * `b7`: Byte 7 /// * `b8`: Byte 8 /// * `b9`: Byte 9 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_10() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_10() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9206,7 +9206,7 @@ impl Instruction { /// * `b8`: Byte 8 /// * `b9`: Byte 9 /// * `b10`: Byte 10 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_11() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_11() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9278,7 +9278,7 @@ impl Instruction { /// * `b9`: Byte 9 /// * `b10`: Byte 10 /// * `b11`: Byte 11 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_12() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_12() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9353,7 +9353,7 @@ impl Instruction { /// * `b10`: Byte 10 /// * `b11`: Byte 11 /// * `b12`: Byte 12 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_13() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_13() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9431,7 +9431,7 @@ impl Instruction { /// * `b11`: Byte 11 /// * `b12`: Byte 12 /// * `b13`: Byte 13 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_14() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_14() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9512,7 +9512,7 @@ impl Instruction { /// * `b12`: Byte 12 /// * `b13`: Byte 13 /// * `b14`: Byte 14 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_15() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_15() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9596,7 +9596,7 @@ impl Instruction { /// * `b13`: Byte 13 /// * `b14`: Byte 14 /// * `b15`: Byte 15 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte_16() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte_16() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9643,7 +9643,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_byte() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_byte() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9682,7 +9682,7 @@ impl Instruction { /// # Arguments /// /// * `w0`: Word 0 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_1() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_1() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9724,7 +9724,7 @@ impl Instruction { /// /// * `w0`: Word 0 /// * `w1`: Word 1 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_2() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_2() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9769,7 +9769,7 @@ impl Instruction { /// * `w0`: Word 0 /// * `w1`: Word 1 /// * `w2`: Word 2 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_3() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_3() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9817,7 +9817,7 @@ impl Instruction { /// * `w1`: Word 1 /// * `w2`: Word 2 /// * `w3`: Word 3 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_4() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_4() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9868,7 +9868,7 @@ impl Instruction { /// * `w2`: Word 2 /// * `w3`: Word 3 /// * `w4`: Word 4 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_5() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_5() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9922,7 +9922,7 @@ impl Instruction { /// * `w3`: Word 3 /// * `w4`: Word 4 /// * `w5`: Word 5 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_6() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_6() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -9979,7 +9979,7 @@ impl Instruction { /// * `w4`: Word 4 /// * `w5`: Word 5 /// * `w6`: Word 6 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_7() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_7() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10039,7 +10039,7 @@ impl Instruction { /// * `w5`: Word 5 /// * `w6`: Word 6 /// * `w7`: Word 7 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_8() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10088,7 +10088,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word_slice_u8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word_slice_u8() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10135,7 +10135,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_word() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_word() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10174,7 +10174,7 @@ impl Instruction { /// # Arguments /// /// * `d0`: Dword 0 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword_1() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword_1() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10216,7 +10216,7 @@ impl Instruction { /// /// * `d0`: Dword 0 /// * `d1`: Dword 1 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword_2() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword_2() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10261,7 +10261,7 @@ impl Instruction { /// * `d0`: Dword 0 /// * `d1`: Dword 1 /// * `d2`: Dword 2 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword_3() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword_3() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10309,7 +10309,7 @@ impl Instruction { /// * `d1`: Dword 1 /// * `d2`: Dword 2 /// * `d3`: Dword 3 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword_4() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword_4() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10358,7 +10358,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword_slice_u8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword_slice_u8() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10405,7 +10405,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_dword() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_dword() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10444,7 +10444,7 @@ impl Instruction { /// # Arguments /// /// * `q0`: Qword 0 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_qword_1() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_qword_1() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10486,7 +10486,7 @@ impl Instruction { /// /// * `q0`: Qword 0 /// * `q1`: Qword 1 - #[deprecated(since = "1.10.0", note = "Use try_with_declare_qword_2() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_qword_2() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10535,7 +10535,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_qword_slice_u8() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_qword_slice_u8() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)] @@ -10582,7 +10582,7 @@ impl Instruction { /// # Arguments /// /// * `data`: Data - #[deprecated(since = "1.10.0", note = "Use try_with_declare_qword() instead")] + #[deprecated(since = "1.10.0", note = "This method can panic, use try_with_declare_qword() instead")] #[cfg_attr(has_must_use, must_use)] #[inline] #[cfg_attr(feature = "cargo-fmt", rustfmt::skip)]