pub struct UiConfig {
    pub theme: Theme,
    pub bg_color: String,
    pub text_color: String,
    pub header_color: String,
    pub primary_color: String,
    pub load_fonts: bool,
    pub regular_font: String,
    pub mono_font: String,
    pub font_size: FontSize,
}
Expand description

A struct containing information about where and how the openapi.json files are served.

Fields

theme: Theme

Is the base theme, which is used for calculating colors for various UI components. ‘theme’, ‘bg-color’ and ‘text-color’ are the base attributes for generating a custom theme.

The default is Theme::Light.

bg_color: String

Hex color code for main background.

text_color: String

Hex color code for text.

header_color: String

Hex color code for the header’s background.

primary_color: String

Hex color code on various controls such as buttons, tabs.

load_fonts: bool

RapiDoc will attempt to load fonts from CDN, if this is not intended, then set this to false.

The default is true.

regular_font: String

Font Name(s) to be used for regular text.

mono_font: String

Font Name(s) to be used for mono-spaced text.

font_size: FontSize

Sets the relative font sizes for the entire document.

The default is FontSize::Default.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

Converts self into a collection.

Should always be Self

The resulting type after obtaining ownership.

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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