pub struct LinkDiff {
pub operation_ref: DiffResult<String>,
pub operation_id: DiffResult<String>,
pub parameters: DiffResult<MapDiff<Value>>,
pub request_body: DiffResult<Value>,
pub description: DiffResult<String>,
pub server: DiffResult<ServerDiff>,
}
Fields§
§operation_ref: DiffResult<String>
§operation_id: DiffResult<String>
§parameters: DiffResult<MapDiff<Value>>
§request_body: DiffResult<Value>
§description: DiffResult<String>
§server: DiffResult<ServerDiff>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkDiff
impl<'de> Deserialize<'de> for LinkDiff
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<Link, LinkDiff, HttpSchemaDiffContext> for Link
impl Diff<Link, LinkDiff, HttpSchemaDiffContext> for Link
fn diff( &self, new: Option<&Link>, context: &HttpSchemaDiffContext, ) -> DiffResult<LinkDiff>
Source§impl DiffCache<LinkDiff> for HttpSchemaDiffContext
impl DiffCache<LinkDiff> for HttpSchemaDiffContext
Source§impl DiffOwnChanges for LinkDiff
impl DiffOwnChanges for LinkDiff
fn get_own_changes(&self) -> Vec<(Cow<'_, str>, DiffResultType)>
impl Referencable for LinkDiff
Auto Trait Implementations§
impl Freeze for LinkDiff
impl RefUnwindSafe for LinkDiff
impl Send for LinkDiff
impl Sync for LinkDiff
impl Unpin for LinkDiff
impl UnwindSafe for LinkDiff
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