pub struct BatchStartedEvent {
pub batch_expiry: Option<String>,
pub id: Option<String>,
pub intent_id_hashes: Option<Vec<String>>,
}Fields§
§batch_expiry: Option<String>§id: Option<String>§intent_id_hashes: Option<Vec<String>>Implementations§
Source§impl BatchStartedEvent
impl BatchStartedEvent
pub fn new() -> BatchStartedEvent
Trait Implementations§
Source§impl Clone for BatchStartedEvent
impl Clone for BatchStartedEvent
Source§fn clone(&self) -> BatchStartedEvent
fn clone(&self) -> BatchStartedEvent
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 BatchStartedEvent
impl Debug for BatchStartedEvent
Source§impl Default for BatchStartedEvent
impl Default for BatchStartedEvent
Source§fn default() -> BatchStartedEvent
fn default() -> BatchStartedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchStartedEvent
impl<'de> Deserialize<'de> for BatchStartedEvent
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 PartialEq for BatchStartedEvent
impl PartialEq for BatchStartedEvent
Source§fn eq(&self, other: &BatchStartedEvent) -> bool
fn eq(&self, other: &BatchStartedEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BatchStartedEvent
impl Serialize for BatchStartedEvent
impl StructuralPartialEq for BatchStartedEvent
Source§impl TryFrom<BatchStartedEvent> for BatchStartedEvent
impl TryFrom<BatchStartedEvent> for BatchStartedEvent
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for BatchStartedEvent
impl RefUnwindSafe for BatchStartedEvent
impl Send for BatchStartedEvent
impl Sync for BatchStartedEvent
impl Unpin for BatchStartedEvent
impl UnsafeUnpin for BatchStartedEvent
impl UnwindSafe for BatchStartedEvent
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