pub struct VerifiedMirrorMaterial {
pub brain: String,
pub head_seq: u64,
pub feed_hash: Option<String>,
pub identity: Value,
pub entries: Vec<(u64, String, String)>,
pub pack_sha256: Option<String>,
}Expand description
Fully re-verified mirror material suitable for a read-only re-server.
Fields§
§brain: String§head_seq: u64§feed_hash: Option<String>§identity: Value§entries: Vec<(u64, String, String)>Sequence, exact normative entry JSON without newline, and entry hash.
pack_sha256: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifiedMirrorMaterial
impl RefUnwindSafe for VerifiedMirrorMaterial
impl Send for VerifiedMirrorMaterial
impl Sync for VerifiedMirrorMaterial
impl Unpin for VerifiedMirrorMaterial
impl UnsafeUnpin for VerifiedMirrorMaterial
impl UnwindSafe for VerifiedMirrorMaterial
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