pub struct OnFill {
pub parent_seqno: u32,
pub actions: Vec<Action>,
pub meta: ActionMeta,
}Expand description
On-fill registration.
Registers follow-up actions that should execute once the parent action
(identified by parent_seqno in the same transaction) receives its first fill.
Fields§
§parent_seqno: u32Parent action sequence index in the same transaction.
actions: Vec<Action>Actions to execute on first parent fill.
meta: ActionMetaTrait Implementations§
Source§impl<'de> Deserialize<'de> for OnFill
impl<'de> Deserialize<'de> for OnFill
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 OnFill
impl RefUnwindSafe for OnFill
impl Send for OnFill
impl Sync for OnFill
impl Unpin for OnFill
impl UnsafeUnpin for OnFill
impl UnwindSafe for OnFill
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