pub struct AssetDiffSummary {
pub text: String,
pub change_type: ChangeType,
}Expand description
Text description of what changed between before and after.
Fields§
§text: StringHuman-readable description of what visually changed.
change_type: ChangeTypeCategorisation of the type of change.
Trait Implementations§
Source§impl Clone for AssetDiffSummary
impl Clone for AssetDiffSummary
Source§fn clone(&self) -> AssetDiffSummary
fn clone(&self) -> AssetDiffSummary
Returns a duplicate 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 AssetDiffSummary
impl Debug for AssetDiffSummary
Source§impl<'de> Deserialize<'de> for AssetDiffSummary
impl<'de> Deserialize<'de> for AssetDiffSummary
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
Auto Trait Implementations§
impl Freeze for AssetDiffSummary
impl RefUnwindSafe for AssetDiffSummary
impl Send for AssetDiffSummary
impl Sync for AssetDiffSummary
impl Unpin for AssetDiffSummary
impl UnsafeUnpin for AssetDiffSummary
impl UnwindSafe for AssetDiffSummary
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