pub struct ForensicsConfig {
pub proof_lane_enabled: bool,
pub blake3_domain_separation: bool,
pub merkle_state_root_enabled: bool,
pub ed25519_signing_enabled: bool,
pub public_audit_tables: bool,
}Expand description
Forensics and proof lane parameters.
Fields§
§proof_lane_enabled: boolWhether the proof lane is enabled. Default: false.
blake3_domain_separation: boolWhether BLAKE3 domain separation is used for hashing. Default: true.
merkle_state_root_enabled: boolWhether Merkle state root computation is enabled. Default: false.
ed25519_signing_enabled: boolWhether Ed25519 signing of canon events is enabled. Default: false.
public_audit_tables: boolWhether public audit tables are exposed. Default: false.
Trait Implementations§
Source§impl Clone for ForensicsConfig
impl Clone for ForensicsConfig
Source§fn clone(&self) -> ForensicsConfig
fn clone(&self) -> ForensicsConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 ForensicsConfig
impl Debug for ForensicsConfig
Source§impl Default for ForensicsConfig
impl Default for ForensicsConfig
Source§impl<'de> Deserialize<'de> for ForensicsConfig
impl<'de> Deserialize<'de> for ForensicsConfig
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 ForensicsConfig
impl RefUnwindSafe for ForensicsConfig
impl Send for ForensicsConfig
impl Sync for ForensicsConfig
impl Unpin for ForensicsConfig
impl UnsafeUnpin for ForensicsConfig
impl UnwindSafe for ForensicsConfig
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