pub struct Change {
pub paths: Vec<ChangePath>,
pub changes: Vec<ChangeInfo>,
}Expand description
Describes changes detected within a single component or endpoint.
Fields§
§paths: Vec<ChangePath>All paths through which this component/endpoint was reached.
For schema changes, this may contain multiple paths if the same schema is referenced from multiple locations. For endpoint changes, this will typically contain a single path.
changes: Vec<ChangeInfo>Individual changes detected within this component/endpoint.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Change
impl RefUnwindSafe for Change
impl Send for Change
impl Sync for Change
impl Unpin for Change
impl UnsafeUnpin for Change
impl UnwindSafe for Change
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