pub struct RunConfig {
pub relayer_source_endpoint: Option<String>,
pub run_validation: bool,
}
Expand description
Options for running the node.
Fields§
§relayer_source_endpoint: Option<String>
Node endpoint to sync blocks from.
If None
then the relayer stream will not run.
run_validation: bool
If false
then the validation stream will not run.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunConfig
impl RefUnwindSafe for RunConfig
impl Send for RunConfig
impl Sync for RunConfig
impl Unpin for RunConfig
impl UnwindSafe for RunConfig
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