pub struct AssignCommand1 {
pub unassign_id: String,
pub source: String,
pub target: String,
}
Expand description
AssignCommand1 : Assign a contract
Fields§
§unassign_id: String
The ID from the unassigned event to be completed by this assignment. Must be a valid LedgerString (as described in value.proto
). Required
source: String
The ID of the source synchronizer Must be a valid synchronizer id Required
target: String
The ID of the target synchronizer Must be a valid synchronizer id Required
Implementations§
Trait Implementations§
Source§impl Clone for AssignCommand1
impl Clone for AssignCommand1
Source§fn clone(&self) -> AssignCommand1
fn clone(&self) -> AssignCommand1
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 Debug for AssignCommand1
impl Debug for AssignCommand1
Source§impl Default for AssignCommand1
impl Default for AssignCommand1
Source§fn default() -> AssignCommand1
fn default() -> AssignCommand1
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssignCommand1
impl<'de> Deserialize<'de> for AssignCommand1
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 AssignCommand1
impl PartialEq for AssignCommand1
Source§impl Serialize for AssignCommand1
impl Serialize for AssignCommand1
impl StructuralPartialEq for AssignCommand1
Auto Trait Implementations§
impl Freeze for AssignCommand1
impl RefUnwindSafe for AssignCommand1
impl Send for AssignCommand1
impl Sync for AssignCommand1
impl Unpin for AssignCommand1
impl UnwindSafe for AssignCommand1
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