Skip to main content

AppSettings

Struct AppSettings 

Source
pub struct AppSettings {
Show 26 fields pub port_mode: PortMode, pub port: u16, pub host: String, pub theme: String, pub language: String, pub web_theme: String, pub web_language: String, pub db_path: Option<String>, pub salt: String, pub workspaces: Vec<WorkspaceSettings>, pub tray_resident: bool, pub default_search: bool, pub default_viewed: bool, pub default_live: bool, pub default_edit: bool, pub default_chat: bool, pub default_chat_mode: String, pub default_shared_annotation: bool, pub print_collapsed_content: bool, pub chat: ChatSettings, pub web_styles: HashMap<String, String>, pub shortcuts: HashMap<String, Value>, pub auto_update: bool, pub update_channel: String, pub window_width: Option<u32>, pub window_height: Option<u32>,
}

Fields§

§port_mode: PortMode§port: u16§host: String§theme: String§language: String§web_theme: String§web_language: String§db_path: Option<String>§salt: String

Per-install random salt for workspace-id hashing. Empty on first run; load() lazily generates one and persists it. Keeping it stable across restarts means bookmarked workspace URLs survive; randomizing per install means the URL is not derivable from the file path alone.

§workspaces: Vec<WorkspaceSettings>§tray_resident: bool§default_search: bool§default_viewed: bool§default_live: bool§default_edit: bool§default_chat: bool§default_chat_mode: String

Default chat surface form: “in_page” (floating panel embedded in the markdown view) or “popout” (a standalone window opened via window.open). Drives: • sphere click → expand panel vs spawn popout • selection chat button → quote into in-page chat vs popout • TOGGLE_CHAT shortcut In every case Shift inverts the choice for that single click/press.

§default_shared_annotation: bool§print_collapsed_content: bool

When false (default), <details>-style collapsed sections are hidden in print and replaced by a small placeholder; when true the collapsed content is forced visible so it shows up in the printed output.

§chat: ChatSettings§web_styles: HashMap<String, String>§shortcuts: HashMap<String, Value>§auto_update: bool§update_channel: String§window_width: Option<u32>§window_height: Option<u32>

Implementations§

Source§

impl AppSettings

Source

pub fn load() -> Self

Source

pub fn save(&self) -> Result<(), String>

Source

pub fn to_server_config(&self, port: u16) -> ServerConfig

Source

pub fn effective_web_language(&self) -> Option<String>

Source

pub fn persist_hook(settings: Arc<Mutex<AppSettings>>) -> PersistHook

Build a registry persist-hook that mirrors every registry mutation back into the shared AppSettings and writes to disk. CLI daemon and GUI both wire this so workspace changes initiated from either side end up with the same persistent state.

Source

pub fn render_shortcuts_json(&self) -> Option<String>

Source

pub fn render_styles_css(&self) -> Option<String>

Render web_styles (GUI-supplied overrides) as a complete CSS block targeting the --markon-* design tokens defined in editor.css.

Storage convention from the GUI panel (STYLE_DEFS in index.html): • duo-color entries are keyed <base>.light / <base>.dark (e.g. primary.light, muted.dark) • single-value entries are keyed by the bare token name (ui-font, ui-font-size, panel-opacity)

Routing rules: • <base>.light:root as --markon-<base><base>.darkhtml[data-theme="dark"] as --markon-<base> • bare key → :root as --markon-<key> • unknown suffix (anything other than .light/.dark) is treated as a single value and routed to :root so malformed/legacy storage doesn’t panic.

Selector blocks are emitted in a fixed order — :root first, then the dark override — so callers/tests get stable framing even though HashMap iteration over individual properties is unordered. Returns None when neither selector would have any content.

Trait Implementations§

Source§

impl Clone for AppSettings

Source§

fn clone(&self) -> AppSettings

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AppSettings

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for AppSettings

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for AppSettings

Source§

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 Serialize for AppSettings

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Converts Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Converts Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Converts &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Converts &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

impl<T> DowncastSend for T
where T: Any + Send,

Source§

fn into_any_send(self: Box<T>) -> Box<dyn Any + Send>

Converts Box<Trait> (where Trait: DowncastSend) to Box<dyn Any + Send>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Source§

fn into_any_sync(self: Box<T>) -> Box<dyn Any + Sync + Send>

Converts Box<Trait> (where Trait: DowncastSync) to Box<dyn Any + Send + Sync>, which can then be downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Converts Arc<Trait> (where Trait: DowncastSync) to Arc<Any>, which can then be downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> Fruit for T
where T: Send + Downcast,

Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,