pub struct RunStepDetailsMessageCreationObject {
pub message_creation: RunStepDetailsMessageCreationObjectMessageCreation,
}
Expand description
Details of the message creation by the run step.
Fields§
§message_creation: RunStepDetailsMessageCreationObjectMessageCreation
Implementations§
Source§impl RunStepDetailsMessageCreationObject
impl RunStepDetailsMessageCreationObject
Sourcepub fn builder() -> RunStepDetailsMessageCreationObjectBuilder<((),)>
pub fn builder() -> RunStepDetailsMessageCreationObjectBuilder<((),)>
Create a builder for building RunStepDetailsMessageCreationObject
.
On the builder, call .message_creation(...)
to set the values of the fields.
Finally, call .build()
to create the instance of RunStepDetailsMessageCreationObject
.
Trait Implementations§
Source§impl Clone for RunStepDetailsMessageCreationObject
impl Clone for RunStepDetailsMessageCreationObject
Source§fn clone(&self) -> RunStepDetailsMessageCreationObject
fn clone(&self) -> RunStepDetailsMessageCreationObject
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<'de> Deserialize<'de> for RunStepDetailsMessageCreationObject
impl<'de> Deserialize<'de> for RunStepDetailsMessageCreationObject
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 RunStepDetailsMessageCreationObject
impl PartialEq for RunStepDetailsMessageCreationObject
Source§fn eq(&self, other: &RunStepDetailsMessageCreationObject) -> bool
fn eq(&self, other: &RunStepDetailsMessageCreationObject) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDetailsMessageCreationObject
Auto Trait Implementations§
impl Freeze for RunStepDetailsMessageCreationObject
impl RefUnwindSafe for RunStepDetailsMessageCreationObject
impl Send for RunStepDetailsMessageCreationObject
impl Sync for RunStepDetailsMessageCreationObject
impl Unpin for RunStepDetailsMessageCreationObject
impl UnwindSafe for RunStepDetailsMessageCreationObject
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