pub struct DataFlowPrepareMessage {
pub message_id: String,
pub participant_id: String,
pub counter_party_id: String,
pub dataspace_context: String,
pub process_id: String,
pub agreement_id: String,
pub dataset_id: String,
pub profile: String,
pub labels: Vec<String>,
pub metadata: HashMap<String, Value>,
pub claims: HashMap<String, Value>,
}Fields§
§message_id: String§participant_id: String§counter_party_id: String§dataspace_context: String§process_id: String§agreement_id: String§dataset_id: String§profile: String§labels: Vec<String>§metadata: HashMap<String, Value>§claims: HashMap<String, Value>Implementations§
Source§impl DataFlowPrepareMessage
impl DataFlowPrepareMessage
Sourcepub fn builder() -> DataFlowPrepareMessageBuilder
pub fn builder() -> DataFlowPrepareMessageBuilder
Create an instance of DataFlowPrepareMessage using the builder syntax
Trait Implementations§
Source§impl Clone for DataFlowPrepareMessage
impl Clone for DataFlowPrepareMessage
Source§fn clone(&self) -> DataFlowPrepareMessage
fn clone(&self) -> DataFlowPrepareMessage
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 DataFlowPrepareMessage
impl Debug for DataFlowPrepareMessage
Source§impl<'de> Deserialize<'de> for DataFlowPrepareMessage
impl<'de> Deserialize<'de> for DataFlowPrepareMessage
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 DataFlowPrepareMessage
impl RefUnwindSafe for DataFlowPrepareMessage
impl Send for DataFlowPrepareMessage
impl Sync for DataFlowPrepareMessage
impl Unpin for DataFlowPrepareMessage
impl UnsafeUnpin for DataFlowPrepareMessage
impl UnwindSafe for DataFlowPrepareMessage
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