pub struct AuthorityChain {
pub initiated_by: RequestPrincipal,
pub owned_by: Option<AutomationPrincipal>,
pub executed_as: ExecutionPrincipal,
pub approved_by: Option<RequestPrincipal>,
}Fields§
§initiated_by: RequestPrincipal§owned_by: Option<AutomationPrincipal>§executed_as: ExecutionPrincipal§approved_by: Option<RequestPrincipal>Trait Implementations§
Source§impl Clone for AuthorityChain
impl Clone for AuthorityChain
Source§fn clone(&self) -> AuthorityChain
fn clone(&self) -> AuthorityChain
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 AuthorityChain
impl Debug for AuthorityChain
Source§impl<'de> Deserialize<'de> for AuthorityChain
impl<'de> Deserialize<'de> for AuthorityChain
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthorityChain, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthorityChain, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthorityChain
impl PartialEq for AuthorityChain
Source§impl Serialize for AuthorityChain
impl Serialize for AuthorityChain
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 Eq for AuthorityChain
impl StructuralPartialEq for AuthorityChain
Auto Trait Implementations§
impl Freeze for AuthorityChain
impl RefUnwindSafe for AuthorityChain
impl Send for AuthorityChain
impl Sync for AuthorityChain
impl Unpin for AuthorityChain
impl UnsafeUnpin for AuthorityChain
impl UnwindSafe for AuthorityChain
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