pub struct SignedOffboardingRecord {
pub record: OffboardingRecord,
pub org_curve: String,
pub signature: String,
}Expand description
An OffboardingRecord plus the org’s signature over its canonical form. The
signature’s curve travels in-band (org_curve) per the wire-format rule.
Fields§
§record: OffboardingRecordThe signed record payload.
org_curve: StringIn-band curve tag for signature ("ed25519" / "p256").
signature: StringHex-encoded org signature over json_canon(record).
Trait Implementations§
Source§impl Clone for SignedOffboardingRecord
impl Clone for SignedOffboardingRecord
Source§fn clone(&self) -> SignedOffboardingRecord
fn clone(&self) -> SignedOffboardingRecord
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 SignedOffboardingRecord
impl Debug for SignedOffboardingRecord
Source§impl<'de> Deserialize<'de> for SignedOffboardingRecord
impl<'de> Deserialize<'de> for SignedOffboardingRecord
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
Auto Trait Implementations§
impl Freeze for SignedOffboardingRecord
impl RefUnwindSafe for SignedOffboardingRecord
impl Send for SignedOffboardingRecord
impl Sync for SignedOffboardingRecord
impl Unpin for SignedOffboardingRecord
impl UnsafeUnpin for SignedOffboardingRecord
impl UnwindSafe for SignedOffboardingRecord
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