pub struct ServerInformation {
pub base_url: Option<String>,
pub version: Option<String>,
pub version_numbers: Option<Vec<i32>>,
pub deployment_type: Option<String>,
pub build_number: Option<i32>,
pub build_date: Option<String>,
pub server_time: Option<String>,
pub scm_info: Option<String>,
pub server_title: Option<String>,
pub health_checks: Option<Vec<HealthCheckResult>>,
}
Expand description
ServerInformation : Details about the Jira instance.
Fields§
§base_url: Option<String>
The base URL of the Jira instance.
version: Option<String>
The version of Jira.
version_numbers: Option<Vec<i32>>
The major, minor, and revision version numbers of the Jira version.
deployment_type: Option<String>
The type of server deployment. This is always returned as Cloud.
build_number: Option<i32>
The build number of the Jira version.
build_date: Option<String>
The timestamp when the Jira version was built.
server_time: Option<String>
The time in Jira when this request was responded to.
scm_info: Option<String>
The unique identifier of the Jira version.
server_title: Option<String>
The name of the Jira instance.
health_checks: Option<Vec<HealthCheckResult>>
Jira instance health check results. Deprecated and no longer returned.
Implementations§
Source§impl ServerInformation
impl ServerInformation
Sourcepub fn new() -> ServerInformation
pub fn new() -> ServerInformation
Details about the Jira instance.
Trait Implementations§
Source§impl Clone for ServerInformation
impl Clone for ServerInformation
Source§fn clone(&self) -> ServerInformation
fn clone(&self) -> ServerInformation
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 ServerInformation
impl Debug for ServerInformation
Source§impl Default for ServerInformation
impl Default for ServerInformation
Source§fn default() -> ServerInformation
fn default() -> ServerInformation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerInformation
impl<'de> Deserialize<'de> for ServerInformation
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 ServerInformation
impl PartialEq for ServerInformation
Source§impl Serialize for ServerInformation
impl Serialize for ServerInformation
impl StructuralPartialEq for ServerInformation
Auto Trait Implementations§
impl Freeze for ServerInformation
impl RefUnwindSafe for ServerInformation
impl Send for ServerInformation
impl Sync for ServerInformation
impl Unpin for ServerInformation
impl UnwindSafe for ServerInformation
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