pub struct CancelInstruction {
pub client_instruction_id: f64,
pub instruction_id: f64,
pub reason: String,
}Fields§
§client_instruction_id: f64- Example:
1012983.0
instruction_id: f64- Example:
43085477.0
reason: String- Example:
"Testing".to_string()
Trait Implementations§
Source§impl Clone for CancelInstruction
impl Clone for CancelInstruction
Source§fn clone(&self) -> CancelInstruction
fn clone(&self) -> CancelInstruction
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 CancelInstruction
impl Debug for CancelInstruction
Source§impl Default for CancelInstruction
impl Default for CancelInstruction
Source§impl PartialEq for CancelInstruction
impl PartialEq for CancelInstruction
Source§impl Serialize for CancelInstruction
impl Serialize for CancelInstruction
Source§impl Validate for CancelInstruction
impl Validate for CancelInstruction
Source§impl<'v_a> ValidateArgs<'v_a> for CancelInstruction
impl<'v_a> ValidateArgs<'v_a> for CancelInstruction
impl StructuralPartialEq for CancelInstruction
Auto Trait Implementations§
impl Freeze for CancelInstruction
impl RefUnwindSafe for CancelInstruction
impl Send for CancelInstruction
impl Sync for CancelInstruction
impl Unpin for CancelInstruction
impl UnsafeUnpin for CancelInstruction
impl UnwindSafe for CancelInstruction
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