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 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 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
Source§impl PartialEq for DiffResponse
impl PartialEq for DiffResponse
Source§impl Serialize for DiffResponse
impl Serialize for DiffResponse
impl StructuralPartialEq for DiffResponse
Auto Trait Implementations§
impl Freeze for DiffResponse
impl RefUnwindSafe for DiffResponse
impl Send for DiffResponse
impl Sync for DiffResponse
impl Unpin for DiffResponse
impl UnwindSafe for DiffResponse
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