pub struct WindowInfo {
pub id: WindowId,
pub label: String,
pub root: PathBuf,
pub project_path: PathBuf,
pub shared_worktree: bool,
}Expand description
Information about an editor session (plugin-visible). Returned
by editor.listWindows() and carried in the snapshot. Mirrors
the editor-side Session struct — see
crates/fresh-editor/src/app/session.rs and
docs/internal/orchestrator-sessions-design.md.
Fields§
§id: WindowIdStable session id. The base session is always 1.
label: StringUser-visible label (defaults to root basename).
root: PathBufAbsolute project root.
project_path: PathBufProject this session belongs to — the canonical repo root
(or arbitrary directory) the user pointed the new-session
form at. For sessions without an explicit project (legacy
sessions, the launch session, sessions created outside the
orchestrator’s new-session form) this equals root — the
host normalises at the API boundary so plugins never have
to deal with null/undefined/"" ambiguity (?? only
falls through on null, but the orchestrator’s
WindowInfo round-trips a Some(PathBuf::new()) as "",
which then becomes a poisoned lex sort key — observed as
the Windows-only dock reorder).
true when the session shares its working tree with
other sessions (worktree-creation was off at session
time, or the session lives in a non-git directory).
Persistence-only field; defaults to false and isn’t
emitted when false.
Trait Implementations§
Source§impl Clone for WindowInfo
impl Clone for WindowInfo
Source§fn clone(&self) -> WindowInfo
fn clone(&self) -> WindowInfo
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 WindowInfo
impl Debug for WindowInfo
Source§impl<'de> Deserialize<'de> for WindowInfo
impl<'de> Deserialize<'de> for WindowInfo
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>,
Source§impl Serialize for WindowInfo
impl Serialize for WindowInfo
Source§impl TS for WindowInfo
impl TS for WindowInfo
Source§type WithoutGenerics = WindowInfo
type WithoutGenerics = WindowInfo
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = WindowInfo
type OptionInnerType = WindowInfo
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more