pub struct HandlerTriggerView {
pub hook: String,
pub trigger: u64,
pub disposition: Option<String>,
pub seq: u64,
pub at_ms: u64,
}Expand description
One handler trigger against this instance.
Fields§
§hook: StringThe hook.
trigger: u64Trigger ordinal.
disposition: Option<String>The consulted binding’s declared disposition head (03 §1.8 closed set; 08 §2.5 handler row). Absent on pre-incorporation ledgers.
seq: u64Ledger seq.
at_ms: u64Wall clock.
Trait Implementations§
Source§impl Clone for HandlerTriggerView
impl Clone for HandlerTriggerView
Source§fn clone(&self) -> HandlerTriggerView
fn clone(&self) -> HandlerTriggerView
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 HandlerTriggerView
impl Debug for HandlerTriggerView
Source§impl<'de> Deserialize<'de> for HandlerTriggerView
impl<'de> Deserialize<'de> for HandlerTriggerView
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 JsonSchema for HandlerTriggerView
impl JsonSchema for HandlerTriggerView
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for HandlerTriggerView
impl PartialEq for HandlerTriggerView
Source§impl Serialize for HandlerTriggerView
impl Serialize for HandlerTriggerView
impl StructuralPartialEq for HandlerTriggerView
Auto Trait Implementations§
impl Freeze for HandlerTriggerView
impl RefUnwindSafe for HandlerTriggerView
impl Send for HandlerTriggerView
impl Sync for HandlerTriggerView
impl Unpin for HandlerTriggerView
impl UnsafeUnpin for HandlerTriggerView
impl UnwindSafe for HandlerTriggerView
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