Struct fastly_api::models::diff_response::DiffResponse
source · pub struct DiffResponse {
pub from: Option<i32>,
pub to: Option<i32>,
pub format: Option<String>,
pub diff: Option<String>,
}
Fields§
§from: Option<i32>
The version number being diffed from.
to: Option<i32>
The version number being diffed to.
format: Option<String>
The format the diff is being returned in (text
, html
or html_simple
).
diff: Option<String>
The differences between two specified service versions. Returns the full config if the version configurations are identical.
Implementations§
source§impl DiffResponse
impl DiffResponse
pub fn new() -> DiffResponse
Trait Implementations§
source§impl Clone for DiffResponse
impl Clone for DiffResponse
source§fn clone(&self) -> DiffResponse
fn clone(&self) -> DiffResponse
Returns a copy 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 DiffResponse
impl Debug for DiffResponse
source§impl Default for DiffResponse
impl Default for DiffResponse
source§fn default() -> DiffResponse
fn default() -> DiffResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DiffResponse
impl<'de> Deserialize<'de> for DiffResponse
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