pub struct ServerVariableDiff {
pub enum: DiffResult<VecDiff<String>>,
pub default: DiffResult<Value>,
pub description: DiffResult<String>,
}
Fields§
§enum: DiffResult<VecDiff<String>>
§default: DiffResult<Value>
§description: DiffResult<String>
Trait Implementations§
Source§impl Clone for ServerVariableDiff
impl Clone for ServerVariableDiff
Source§fn clone(&self) -> ServerVariableDiff
fn clone(&self) -> ServerVariableDiff
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 ServerVariableDiff
impl Debug for ServerVariableDiff
Source§impl<'de> Deserialize<'de> for ServerVariableDiff
impl<'de> Deserialize<'de> for ServerVariableDiff
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 Diff<ServerVariable, ServerVariableDiff, HttpSchemaDiffContext> for ServerVariable
impl Diff<ServerVariable, ServerVariableDiff, HttpSchemaDiffContext> for ServerVariable
fn diff( &self, new: Option<&ServerVariable>, context: &HttpSchemaDiffContext, ) -> DiffResult<ServerVariableDiff>
Source§impl DiffOwnChanges for ServerVariableDiff
impl DiffOwnChanges for ServerVariableDiff
fn get_own_changes(&self) -> Vec<(Cow<'_, str>, DiffResultType)>
Auto Trait Implementations§
impl Freeze for ServerVariableDiff
impl RefUnwindSafe for ServerVariableDiff
impl Send for ServerVariableDiff
impl Sync for ServerVariableDiff
impl Unpin for ServerVariableDiff
impl UnwindSafe for ServerVariableDiff
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