pub struct SettingsResponse {
pub general_default_host: Option<String>,
pub general_default_ttl: Option<i32>,
pub general_stale_if_error: Option<bool>,
pub general_stale_if_error_ttl: Option<i32>,
pub service_id: Option<Box<String>>,
pub version: Option<Box<i32>>,
}
Fields§
§general_default_host: Option<String>
The default host name for the version.
general_default_ttl: Option<i32>
The default time-to-live (TTL) for the version.
general_stale_if_error: Option<bool>
Enables serving a stale object if there is an error.
general_stale_if_error_ttl: Option<i32>
The default time-to-live (TTL) for serving the stale object for the version.
service_id: Option<Box<String>>
§version: Option<Box<i32>>
Implementations§
Source§impl SettingsResponse
impl SettingsResponse
pub fn new() -> SettingsResponse
Trait Implementations§
Source§impl Clone for SettingsResponse
impl Clone for SettingsResponse
Source§fn clone(&self) -> SettingsResponse
fn clone(&self) -> SettingsResponse
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 SettingsResponse
impl Debug for SettingsResponse
Source§impl Default for SettingsResponse
impl Default for SettingsResponse
Source§fn default() -> SettingsResponse
fn default() -> SettingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SettingsResponse
impl<'de> Deserialize<'de> for SettingsResponse
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 PartialEq for SettingsResponse
impl PartialEq for SettingsResponse
Source§impl Serialize for SettingsResponse
impl Serialize for SettingsResponse
impl StructuralPartialEq for SettingsResponse
Auto Trait Implementations§
impl Freeze for SettingsResponse
impl RefUnwindSafe for SettingsResponse
impl Send for SettingsResponse
impl Sync for SettingsResponse
impl Unpin for SettingsResponse
impl UnwindSafe for SettingsResponse
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