pub struct InviteAction {
pub principal: String,
}
Expand description
An action to invite a specific AWS account to create a member and join the network. The InviteAction
is carried out when a Proposal
is APPROVED
.
Applies only to Hyperledger Fabric.
Fields§
§principal: String
The AWS account ID to invite.
Trait Implementations§
Source§impl Clone for InviteAction
impl Clone for InviteAction
Source§fn clone(&self) -> InviteAction
fn clone(&self) -> InviteAction
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 InviteAction
impl Debug for InviteAction
Source§impl Default for InviteAction
impl Default for InviteAction
Source§fn default() -> InviteAction
fn default() -> InviteAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InviteAction
impl<'de> Deserialize<'de> for InviteAction
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 InviteAction
impl PartialEq for InviteAction
Source§impl Serialize for InviteAction
impl Serialize for InviteAction
impl StructuralPartialEq for InviteAction
Auto Trait Implementations§
impl Freeze for InviteAction
impl RefUnwindSafe for InviteAction
impl Send for InviteAction
impl Sync for InviteAction
impl Unpin for InviteAction
impl UnwindSafe for InviteAction
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