pub struct ApproversConfigV2 {
pub can_initiator_approve: Option<bool>,
pub operator: Option<Operator>,
pub allow_operator_as_authorizer: Option<bool>,
pub approval_groups: Option<Vec<ApproversConfigV2ApprovalGroupsInner>>,
}Expand description
ApproversConfigV2 : Approvers configuration
Fields§
§can_initiator_approve: Option<bool>Whether initiator can approve
operator: Option<Operator>Operator for approval groups
Whether operator can be authorizer
approval_groups: Option<Vec<ApproversConfigV2ApprovalGroupsInner>>List of approval groups
Implementations§
Source§impl ApproversConfigV2
impl ApproversConfigV2
Sourcepub fn new() -> ApproversConfigV2
pub fn new() -> ApproversConfigV2
Approvers configuration
Trait Implementations§
Source§impl Clone for ApproversConfigV2
impl Clone for ApproversConfigV2
Source§fn clone(&self) -> ApproversConfigV2
fn clone(&self) -> ApproversConfigV2
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 ApproversConfigV2
impl Debug for ApproversConfigV2
Source§impl Default for ApproversConfigV2
impl Default for ApproversConfigV2
Source§fn default() -> ApproversConfigV2
fn default() -> ApproversConfigV2
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApproversConfigV2
impl<'de> Deserialize<'de> for ApproversConfigV2
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 ApproversConfigV2
impl PartialEq for ApproversConfigV2
Source§impl Serialize for ApproversConfigV2
impl Serialize for ApproversConfigV2
impl StructuralPartialEq for ApproversConfigV2
Auto Trait Implementations§
impl Freeze for ApproversConfigV2
impl RefUnwindSafe for ApproversConfigV2
impl Send for ApproversConfigV2
impl Sync for ApproversConfigV2
impl Unpin for ApproversConfigV2
impl UnwindSafe for ApproversConfigV2
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