#[allow(unused_imports)]
use super::*;
impl std::fmt::Debug for super::AddOnWidgetSet {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("AddOnWidgetSet");
debug_struct.field("used_widgets", &self.used_widgets);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::MenuItemExtensionPoint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("MenuItemExtensionPoint");
debug_struct.field("run_function", &self.run_function);
debug_struct.field("label", &self.label);
debug_struct.field("logo_url", &self.logo_url);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HomepageExtensionPoint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HomepageExtensionPoint");
debug_struct.field("run_function", &self.run_function);
debug_struct.field("enabled", &self.enabled);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::UniversalActionExtensionPoint {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("UniversalActionExtensionPoint");
debug_struct.field("label", &self.label);
debug_struct.field("action_type", &self.action_type);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::CommonAddOnManifest {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("CommonAddOnManifest");
debug_struct.field("name", &self.name);
debug_struct.field("logo_url", &self.logo_url);
debug_struct.field("layout_properties", &self.layout_properties);
debug_struct.field("add_on_widget_set", &self.add_on_widget_set);
debug_struct.field("use_locale_from_app", &self.use_locale_from_app);
debug_struct.field("homepage_trigger", &self.homepage_trigger);
debug_struct.field("universal_actions", &self.universal_actions);
debug_struct.field("open_link_url_prefixes", &self.open_link_url_prefixes);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::LayoutProperties {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("LayoutProperties");
debug_struct.field("primary_color", &self.primary_color);
debug_struct.field("secondary_color", &self.secondary_color);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}
impl std::fmt::Debug for super::HttpOptions {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let mut debug_struct = f.debug_struct("HttpOptions");
debug_struct.field("authorization_header", &self.authorization_header);
if !self._unknown_fields.is_empty() {
debug_struct.field("_unknown_fields", &self._unknown_fields);
}
debug_struct.finish()
}
}