pub struct ActionAuthorityModel {
pub permission_source: String,
pub signing_location: String,
pub accepts_private_keys: bool,
}Fields§
§permission_source: StringPermission and signer policy are configured by the external agent owner.
signing_location: StringPrivate signing material stays in the owner’s agent or wallet runtime.
accepts_private_keys: boolStrata accepts public keys and signatures, never private key material.
Trait Implementations§
Source§impl Clone for ActionAuthorityModel
impl Clone for ActionAuthorityModel
Source§fn clone(&self) -> ActionAuthorityModel
fn clone(&self) -> ActionAuthorityModel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionAuthorityModel
impl Debug for ActionAuthorityModel
Source§impl<'de> Deserialize<'de> for ActionAuthorityModel
impl<'de> Deserialize<'de> for ActionAuthorityModel
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ActionAuthorityModel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ActionAuthorityModel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ActionAuthorityModel
Source§impl PartialEq for ActionAuthorityModel
impl PartialEq for ActionAuthorityModel
Source§impl Serialize for ActionAuthorityModel
impl Serialize for ActionAuthorityModel
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ActionAuthorityModel
Auto Trait Implementations§
impl Freeze for ActionAuthorityModel
impl RefUnwindSafe for ActionAuthorityModel
impl Send for ActionAuthorityModel
impl Sync for ActionAuthorityModel
impl Unpin for ActionAuthorityModel
impl UnsafeUnpin for ActionAuthorityModel
impl UnwindSafe for ActionAuthorityModel
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