pub struct VerboseStatus {
pub has_tiles: bool,
pub has_admins: bool,
pub has_timezones: bool,
pub has_live_traffic: bool,
pub bbox: Value,
pub warnings: Vec<Value>,
}Expand description
Verbose information about the deployment
Fields§
§has_tiles: boolWhether a valid tileset is currently loaded
has_admins: boolWhether the current tileset was built using the admin database
has_timezones: boolWhether the current tileset was built using the timezone database
has_live_traffic: boolWhether live traffic tiles are currently available
bbox: ValueGeoJSON of the tileset extent
This is likely humongous, be cautions
warnings: Vec<Value>May contain warning objects informing about
- deprecated request parameters,
- clamped values
- etc.
Trait Implementations§
Source§impl Clone for VerboseStatus
impl Clone for VerboseStatus
Source§fn clone(&self) -> VerboseStatus
fn clone(&self) -> VerboseStatus
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 VerboseStatus
impl Debug for VerboseStatus
Source§impl<'de> Deserialize<'de> for VerboseStatus
impl<'de> Deserialize<'de> for VerboseStatus
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
Auto Trait Implementations§
impl Freeze for VerboseStatus
impl RefUnwindSafe for VerboseStatus
impl Send for VerboseStatus
impl Sync for VerboseStatus
impl Unpin for VerboseStatus
impl UnwindSafe for VerboseStatus
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