pub struct RemoveAction {
pub member_id: String,
}
Expand description
An action to remove a member from a Managed Blockchain network as the result of a removal proposal that is APPROVED
. The member and all associated resources are deleted from the network.
Applies only to Hyperledger Fabric.
Fields§
§member_id: String
The unique identifier of the member to remove.
Trait Implementations§
Source§impl Clone for RemoveAction
impl Clone for RemoveAction
Source§fn clone(&self) -> RemoveAction
fn clone(&self) -> RemoveAction
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 RemoveAction
impl Debug for RemoveAction
Source§impl Default for RemoveAction
impl Default for RemoveAction
Source§fn default() -> RemoveAction
fn default() -> RemoveAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoveAction
impl<'de> Deserialize<'de> for RemoveAction
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 RemoveAction
impl PartialEq for RemoveAction
Source§impl Serialize for RemoveAction
impl Serialize for RemoveAction
impl StructuralPartialEq for RemoveAction
Auto Trait Implementations§
impl Freeze for RemoveAction
impl RefUnwindSafe for RemoveAction
impl Send for RemoveAction
impl Sync for RemoveAction
impl Unpin for RemoveAction
impl UnwindSafe for RemoveAction
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