pub struct TagDiff {
pub name: DiffResult<String>,
pub description: DiffResult<String>,
pub external_doc: DiffResult<ExternalDocDiff>,
}
Fields§
§name: DiffResult<String>
§description: DiffResult<String>
§external_doc: DiffResult<ExternalDocDiff>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TagDiff
impl<'de> Deserialize<'de> for TagDiff
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<Tag, TagDiff, HttpSchemaDiffContext> for Tag
impl Diff<Tag, TagDiff, HttpSchemaDiffContext> for Tag
fn diff( &self, new: Option<&Tag>, context: &HttpSchemaDiffContext, ) -> DiffResult<TagDiff>
Source§impl DiffOwnChanges for TagDiff
impl DiffOwnChanges for TagDiff
fn get_own_changes(&self) -> Vec<(Cow<'_, str>, DiffResultType)>
Auto Trait Implementations§
impl Freeze for TagDiff
impl RefUnwindSafe for TagDiff
impl Send for TagDiff
impl Sync for TagDiff
impl Unpin for TagDiff
impl UnwindSafe for TagDiff
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