Type Alias ForkChoiceUpdateResult
pub type ForkChoiceUpdateResult = Result<ForkchoiceUpdated, ForkchoiceUpdateError>;
Expand description
Represents possible variants of a processed forkchoice update.
Aliased Type§
enum ForkChoiceUpdateResult {
Ok(ForkchoiceUpdated),
Err(ForkchoiceUpdateError),
}
Variants§
Ok(ForkchoiceUpdated)
Contains the success value
Err(ForkchoiceUpdateError)
Contains the error value
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 80 bytes
Size for each variant:
Ok
: 80 bytesErr
: 9 bytes