pub struct UnassignCommand1 {
pub contract_id: String,
pub source: String,
pub target: String,
}
Expand description
UnassignCommand1 : Unassign a contract
Fields§
§contract_id: String
The ID of the contract the client wants to unassign. 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 UnassignCommand1
impl Clone for UnassignCommand1
Source§fn clone(&self) -> UnassignCommand1
fn clone(&self) -> UnassignCommand1
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 UnassignCommand1
impl Debug for UnassignCommand1
Source§impl Default for UnassignCommand1
impl Default for UnassignCommand1
Source§fn default() -> UnassignCommand1
fn default() -> UnassignCommand1
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnassignCommand1
impl<'de> Deserialize<'de> for UnassignCommand1
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 UnassignCommand1
impl PartialEq for UnassignCommand1
Source§impl Serialize for UnassignCommand1
impl Serialize for UnassignCommand1
impl StructuralPartialEq for UnassignCommand1
Auto Trait Implementations§
impl Freeze for UnassignCommand1
impl RefUnwindSafe for UnassignCommand1
impl Send for UnassignCommand1
impl Sync for UnassignCommand1
impl Unpin for UnassignCommand1
impl UnwindSafe for UnassignCommand1
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