Skip to main content

PlanContext

Struct PlanContext 

Source
pub struct PlanContext<'a> {
    pub port_in_use: &'a (dyn Fn(u16) -> bool + Sync),
    pub resolved: Option<(&'a ServiceRef, &'a Path)>,
    pub pre_built_ctx: Option<BTreeMap<String, String>>,
    pub port_overrides: BTreeMap<String, u16>,
    pub mode: PlanMode,
    pub acme: Option<&'a AcmeMode>,
}
Expand description

Frontend-supplied capabilities and plan mechanics. Everything here is either a system probe core refuses to own (port_in_use) or internal plumbing for retries/upgrades; none of it is user intent.

Fields§

§port_in_use: &'a (dyn Fn(u16) -> bool + Sync)

+ Sync so plans can be held across awaits inside async (Send) handlers; the CLI’s plain fn pointer satisfies it for free.

§resolved: Option<(&'a ServiceRef, &'a Path)>

Already-resolved (ref, repo dir) when the frontend resolved the registry earlier (the CLI does, once per batch). None resolves from AddRequest::service.

§pre_built_ctx: Option<BTreeMap<String, String>>

Secrets minted during an interactive prompt phase, reused so the values the user saw match what gets written.

§port_overrides: BTreeMap<String, u16>

Pin port assignments (upgrade re-renders).

§mode: PlanMode§acme: Option<&'a AcmeMode>

ACME mode for the reverse proxy’s own install. Lives here rather than in AddRequest until AcmeMode grows serde support; only the CLI exposes it today.

Implementations§

Source§

impl<'a> PlanContext<'a>

Source

pub fn new(port_in_use: &'a (dyn Fn(u16) -> bool + Sync)) -> Self

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for PlanContext<'a>

§

impl<'a> !UnwindSafe for PlanContext<'a>

§

impl<'a> Freeze for PlanContext<'a>

§

impl<'a> Send for PlanContext<'a>

§

impl<'a> Sync for PlanContext<'a>

§

impl<'a> Unpin for PlanContext<'a>

§

impl<'a> UnsafeUnpin for PlanContext<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V