pub struct AppResponseAllowlistConfig {
pub cta_link: Option<String>,
pub cta_text: Option<String>,
pub error_detail: Option<String>,
pub error_title: Option<String>,
}Expand description
AppResponseAllowlistConfig
JSON schema
{
"type": "object",
"required": [
"cta_link",
"cta_text",
"error_detail",
"error_title"
],
"properties": {
"cta_link": {
"type": [
"string",
"null"
]
},
"cta_text": {
"type": [
"string",
"null"
]
},
"error_detail": {
"type": [
"string",
"null"
]
},
"error_title": {
"type": [
"string",
"null"
]
}
}
}Fields§
§cta_link: Option<String>§cta_text: Option<String>§error_detail: Option<String>§error_title: Option<String>Trait Implementations§
Source§impl Clone for AppResponseAllowlistConfig
impl Clone for AppResponseAllowlistConfig
Source§fn clone(&self) -> AppResponseAllowlistConfig
fn clone(&self) -> AppResponseAllowlistConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 AppResponseAllowlistConfig
impl Debug for AppResponseAllowlistConfig
Source§impl<'de> Deserialize<'de> for AppResponseAllowlistConfig
impl<'de> Deserialize<'de> for AppResponseAllowlistConfig
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
Source§impl From<&AppResponseAllowlistConfig> for AppResponseAllowlistConfig
impl From<&AppResponseAllowlistConfig> for AppResponseAllowlistConfig
Source§fn from(value: &AppResponseAllowlistConfig) -> Self
fn from(value: &AppResponseAllowlistConfig) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppResponseAllowlistConfig
impl RefUnwindSafe for AppResponseAllowlistConfig
impl Send for AppResponseAllowlistConfig
impl Sync for AppResponseAllowlistConfig
impl Unpin for AppResponseAllowlistConfig
impl UnsafeUnpin for AppResponseAllowlistConfig
impl UnwindSafe for AppResponseAllowlistConfig
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