pub struct DataFlowStartMessage {
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 data_address: Option<DataAddress>,
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§data_address: Option<DataAddress>§labels: Vec<String>§metadata: HashMap<String, Value>§claims: HashMap<String, Value>Implementations§
Source§impl DataFlowStartMessage
impl DataFlowStartMessage
Sourcepub fn builder() -> DataFlowStartMessageBuilder
pub fn builder() -> DataFlowStartMessageBuilder
Create an instance of DataFlowStartMessage using the builder syntax
Trait Implementations§
Source§impl Clone for DataFlowStartMessage
impl Clone for DataFlowStartMessage
Source§fn clone(&self) -> DataFlowStartMessage
fn clone(&self) -> DataFlowStartMessage
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 DataFlowStartMessage
impl Debug for DataFlowStartMessage
Source§impl<'de> Deserialize<'de> for DataFlowStartMessage
impl<'de> Deserialize<'de> for DataFlowStartMessage
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 DataFlowStartMessage
impl RefUnwindSafe for DataFlowStartMessage
impl Send for DataFlowStartMessage
impl Sync for DataFlowStartMessage
impl Unpin for DataFlowStartMessage
impl UnsafeUnpin for DataFlowStartMessage
impl UnwindSafe for DataFlowStartMessage
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