pub struct OtsFile {
pub digest: Vec<u8>,
pub root: TimestampNode,
}Expand description
A parsed OTS proof file: header + root timestamp node.
Fields§
§digest: Vec<u8>The stamped digest the proof starts from (needed for replay; not part of the serialized file).
root: TimestampNodeRoot node.
Trait Implementations§
impl Eq for OtsFile
impl StructuralPartialEq for OtsFile
Auto Trait Implementations§
impl Freeze for OtsFile
impl RefUnwindSafe for OtsFile
impl Send for OtsFile
impl Sync for OtsFile
impl Unpin for OtsFile
impl UnsafeUnpin for OtsFile
impl UnwindSafe for OtsFile
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