pub struct FrontendSetting {
pub id: String,
pub label: String,
pub description: String,
pub kind: FrontendSettingKind,
}Expand description
One schema-advertised setting rendered by a thin frontend.
Fields§
§id: String§label: String§description: String§kind: FrontendSettingKindTrait Implementations§
Source§impl Clone for FrontendSetting
impl Clone for FrontendSetting
Source§fn clone(&self) -> FrontendSetting
fn clone(&self) -> FrontendSetting
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 moreSource§impl Debug for FrontendSetting
impl Debug for FrontendSetting
Source§impl<'de> Deserialize<'de> for FrontendSetting
impl<'de> Deserialize<'de> for FrontendSetting
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FrontendSetting
Source§impl PartialEq for FrontendSetting
impl PartialEq for FrontendSetting
Source§impl Serialize for FrontendSetting
impl Serialize for FrontendSetting
impl StructuralPartialEq for FrontendSetting
Auto Trait Implementations§
impl Freeze for FrontendSetting
impl RefUnwindSafe for FrontendSetting
impl Send for FrontendSetting
impl Sync for FrontendSetting
impl Unpin for FrontendSetting
impl UnsafeUnpin for FrontendSetting
impl UnwindSafe for FrontendSetting
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