pub struct Init {
pub connections: Vec<Connection>,
pub state: Option<State>,
pub is_state_enabled: bool,
pub rpcs: Vec<String>,
pub is_database_enabled: bool,
pub queue_size: Uint,
pub workflow_history: Option<WorkflowHistory>,
pub is_workflow_enabled: bool,
}Fields§
§connections: Vec<Connection>§state: Option<State>§is_state_enabled: bool§rpcs: Vec<String>§is_database_enabled: bool§queue_size: Uint§workflow_history: Option<WorkflowHistory>§is_workflow_enabled: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for Init
impl<'de> Deserialize<'de> for Init
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
impl Eq for Init
impl StructuralPartialEq for Init
Auto Trait Implementations§
impl Freeze for Init
impl RefUnwindSafe for Init
impl Send for Init
impl Sync for Init
impl Unpin for Init
impl UnsafeUnpin for Init
impl UnwindSafe for Init
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