pub struct FleetConfig {
pub autorun: bool,
}Expand description
Daemon-wide gate for unattended fleet auto-run (mur-daemon’s fleet_tick).
Stored under fleet: in ~/.mur/config.yaml. Either this flag OR the
MUR_FLEET_AUTORUN env var satisfies the gate — both are equally explicit,
off-by-default opt-ins; the env var remains for ops/CI use, this flag is
what the Hub’s Settings toggle controls. Per-fleet budget_usd > 0 and the
.stopped kill-switch are unaffected — see mur-daemon/src/fleet_tick.rs.
Fields§
§autorun: boolAllow fleets with a trigger + budget configured to auto-run unattended.
Trait Implementations§
Source§impl Clone for FleetConfig
impl Clone for FleetConfig
Source§fn clone(&self) -> FleetConfig
fn clone(&self) -> FleetConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FleetConfig
impl Debug for FleetConfig
Source§impl Default for FleetConfig
impl Default for FleetConfig
Source§fn default() -> FleetConfig
fn default() -> FleetConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FleetConfig
impl<'de> Deserialize<'de> for FleetConfig
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
Source§impl PartialEq for FleetConfig
impl PartialEq for FleetConfig
Source§fn eq(&self, other: &FleetConfig) -> bool
fn eq(&self, other: &FleetConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FleetConfig
impl Serialize for FleetConfig
impl StructuralPartialEq for FleetConfig
Auto Trait Implementations§
impl Freeze for FleetConfig
impl RefUnwindSafe for FleetConfig
impl Send for FleetConfig
impl Sync for FleetConfig
impl Unpin for FleetConfig
impl UnsafeUnpin for FleetConfig
impl UnwindSafe for FleetConfig
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