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