pub struct SupervisorLayout {
pub agent_rows: usize,
pub total_rows: usize,
pub top_row_pct: u8,
pub agent_row_pct: f32,
}Expand description
Computed layout parameters for a supervisor-mode tmux session.
Fields§
§agent_rows: usizeNumber of horizontal rows holding coding agents (excludes the top row).
total_rows: usizeTotal tmux rows = agent_rows + 1 (1 top row + agent rows).
top_row_pct: u8Height percentage allocated to the top row (supervisor + dashboard).
agent_row_pct: f32Height percentage allocated to each agent row. f32 because the
21–25-agent bucket lands on 14.4%.
Trait Implementations§
Source§impl Clone for SupervisorLayout
impl Clone for SupervisorLayout
Source§fn clone(&self) -> SupervisorLayout
fn clone(&self) -> SupervisorLayout
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 moreimpl Copy for SupervisorLayout
Source§impl Debug for SupervisorLayout
impl Debug for SupervisorLayout
Source§impl PartialEq for SupervisorLayout
impl PartialEq for SupervisorLayout
Source§fn eq(&self, other: &SupervisorLayout) -> bool
fn eq(&self, other: &SupervisorLayout) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SupervisorLayout
Auto Trait Implementations§
impl Freeze for SupervisorLayout
impl RefUnwindSafe for SupervisorLayout
impl Send for SupervisorLayout
impl Sync for SupervisorLayout
impl Unpin for SupervisorLayout
impl UnsafeUnpin for SupervisorLayout
impl UnwindSafe for SupervisorLayout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more