pub struct ActionSigningData<'a> {
pub version: &'a str,
pub action_type: &'a str,
pub identity: &'a str,
pub payload: &'a Value,
pub timestamp: &'a str,
}Expand description
The subset of ActionEnvelope fields that are signed.
Excludes signature, attestation_chain, and environment.
Fields§
§version: &'a strProtocol version string.
action_type: &'a strThe type of action being performed.
identity: &'a strDID of the signing identity.
payload: &'a ValueArbitrary JSON payload.
timestamp: &'a strRFC3339 timestamp string.
Trait Implementations§
Source§impl<'a> Debug for ActionSigningData<'a>
impl<'a> Debug for ActionSigningData<'a>
Auto Trait Implementations§
impl<'a> Freeze for ActionSigningData<'a>
impl<'a> RefUnwindSafe for ActionSigningData<'a>
impl<'a> Send for ActionSigningData<'a>
impl<'a> Sync for ActionSigningData<'a>
impl<'a> Unpin for ActionSigningData<'a>
impl<'a> UnsafeUnpin for ActionSigningData<'a>
impl<'a> UnwindSafe for ActionSigningData<'a>
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