pub struct SettledIssue {
pub token: String,
pub pca_bytes: Vec<u8>,
pub checkpoint: PicPcaPayload,
pub continuity_bytes: Vec<u8>,
}Expand description
A newly settled continuity state.
Fields§
§token: StringThe settled PIC Token JWT (compact JWS).
pca_bytes: Vec<u8>Exact signed bytes of the new PIC PCA COSE checkpoint.
checkpoint: PicPcaPayloadThe new checkpoint payload: position, authority, challenge.
continuity_bytes: Vec<u8>Exact signed bytes of the settled PIC Continuity COSE.
Trait Implementations§
Source§impl Clone for SettledIssue
impl Clone for SettledIssue
Source§fn clone(&self) -> SettledIssue
fn clone(&self) -> SettledIssue
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 moreAuto Trait Implementations§
impl Freeze for SettledIssue
impl RefUnwindSafe for SettledIssue
impl Send for SettledIssue
impl Sync for SettledIssue
impl Unpin for SettledIssue
impl UnsafeUnpin for SettledIssue
impl UnwindSafe for SettledIssue
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