pub struct TemplateData {
pub title: Option<String>,
pub description: Option<String>,
pub user: Option<UserData>,
pub data: HashMap<String, String>,
pub stats: Vec<StatItem>,
pub columns: Vec<TableColumn>,
pub rows: Vec<HashMap<String, Value>>,
pub message: Option<String>,
pub theme: Option<Theme>,
}Available on crate feature
ui only.Expand description
Template data that can be customized
Fields§
§title: Option<String>Custom title
description: Option<String>Custom description
user: Option<UserData>User data (name, email, etc.)
data: HashMap<String, String>Key-value data for display
stats: Vec<StatItem>Status items for dashboard
columns: Vec<TableColumn>Table columns
rows: Vec<HashMap<String, Value>>Table rows
message: Option<String>Custom message
theme: Option<Theme>Theme override
Trait Implementations§
Source§impl Clone for TemplateData
impl Clone for TemplateData
Source§fn clone(&self) -> TemplateData
fn clone(&self) -> TemplateData
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TemplateData
impl Debug for TemplateData
Source§impl Default for TemplateData
impl Default for TemplateData
Source§fn default() -> TemplateData
fn default() -> TemplateData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TemplateData
impl RefUnwindSafe for TemplateData
impl Send for TemplateData
impl Sync for TemplateData
impl Unpin for TemplateData
impl UnwindSafe for TemplateData
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request