pub struct WalletAdditionalSignerItem {
pub override_policy_ids: Vec<String>,
pub signer_id: String,
}Expand description
WalletAdditionalSignerItem
JSON schema
{
"type": "object",
"required": [
"signer_id"
],
"properties": {
"override_policy_ids": {
"description": "The array of policy IDs that will be applied to
wallet requests. If specified, this will override the base policy IDs
set on the wallet.",
"type": "array",
"items": {
"type": "string"
}
},
"signer_id": {
"type": "string"
}
}
}Fields§
§override_policy_ids: Vec<String>The array of policy IDs that will be applied to wallet requests. If specified, this will override the base policy IDs set on the wallet.
signer_id: StringTrait Implementations§
Source§impl Clone for WalletAdditionalSignerItem
impl Clone for WalletAdditionalSignerItem
Source§fn clone(&self) -> WalletAdditionalSignerItem
fn clone(&self) -> WalletAdditionalSignerItem
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 WalletAdditionalSignerItem
impl Debug for WalletAdditionalSignerItem
Source§impl<'de> Deserialize<'de> for WalletAdditionalSignerItem
impl<'de> Deserialize<'de> for WalletAdditionalSignerItem
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 From<&WalletAdditionalSignerItem> for WalletAdditionalSignerItem
impl From<&WalletAdditionalSignerItem> for WalletAdditionalSignerItem
Source§fn from(value: &WalletAdditionalSignerItem) -> Self
fn from(value: &WalletAdditionalSignerItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WalletAdditionalSignerItem
impl RefUnwindSafe for WalletAdditionalSignerItem
impl Send for WalletAdditionalSignerItem
impl Sync for WalletAdditionalSignerItem
impl Unpin for WalletAdditionalSignerItem
impl UnwindSafe for WalletAdditionalSignerItem
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