pub struct FleetProfile {
pub slot: FleetSlot,
pub role: FleetRole,
pub loadout: FleetLoadout,
pub model: Option<String>,
pub provider: Option<String>,
pub reasoning_effort: Option<String>,
pub permissions: FleetProfilePermissions,
pub delegation: FleetDelegationHints,
}Expand description
Fleet org-chart profile.
A profile is an additive config record for future fleet scheduling policy. Loading one must not grant runtime permissions by itself: shell and trust escalation default off, and approvals default on.
Fields§
§slot: FleetSlotOrg-chart slot this profile describes.
role: FleetRoleSemantic role name and optional instruction overlay.
loadout: FleetLoadoutModel class / route-role hint. This is data only in this slice.
model: Option<String>Optional explicit model id for this profile on the active/resolved route.
This is not an auth or endpoint selector. Provider-scoped routing still validates the executable provider/model/wire-model decision.
provider: Option<String>Optional explicit provider id for this profile’s model (#4093).
Present only when the profile was created against a specific,
credential-checked provider (e.g. via the Fleet setup model picker),
so a worker can be pinned to a route independent of the parent/current
session provider. None means “no route pin” (inherit), matching
model: None; a profile must never carry provider without model.
EPIC #2608 explicit-config-only mandate: this field is the ONLY
authority for the profile’s provider. It is never inferred by sniffing
a substring/prefix out of model — callers that need the provider for
this profile must read this field, not guess from the model id.
reasoning_effort: Option<String>Optional explicit reasoning/thinking tier for this profile (#4137).
This is a safe, non-secret route tuning value. None means inherit the
operator/session reasoning tier. Concrete values are normalized by the
TUI loader before they are used at runtime.
permissions: FleetProfilePermissionsPermission defaults requested by the profile.
delegation: FleetDelegationHintsDelegation hints for future manager policy.
Trait Implementations§
Source§impl Clone for FleetProfile
impl Clone for FleetProfile
Source§fn clone(&self) -> FleetProfile
fn clone(&self) -> FleetProfile
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FleetProfile
impl Debug for FleetProfile
Source§impl Default for FleetProfile
impl Default for FleetProfile
Source§fn default() -> FleetProfile
fn default() -> FleetProfile
Source§impl<'de> Deserialize<'de> for FleetProfile
impl<'de> Deserialize<'de> for FleetProfile
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>,
impl Eq for FleetProfile
Source§impl PartialEq for FleetProfile
impl PartialEq for FleetProfile
Source§impl Serialize for FleetProfile
impl Serialize for FleetProfile
impl StructuralPartialEq for FleetProfile
Auto Trait Implementations§
impl Freeze for FleetProfile
impl RefUnwindSafe for FleetProfile
impl Send for FleetProfile
impl Sync for FleetProfile
impl Unpin for FleetProfile
impl UnsafeUnpin for FleetProfile
impl UnwindSafe for FleetProfile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.