Struct distant_protocol::ChangeDetails
source · pub struct ChangeDetails {
pub attributes: Vec<ChangeDetailsAttributes>,
pub extra: Option<String>,
}Expand description
Details about a change
Fields§
§attributes: Vec<ChangeDetailsAttributes>Clarity on type of attribute changes that have occurred (for kind == attribute)
extra: Option<String>Optional information about the change that is typically platform-specific
Implementations§
Trait Implementations§
source§impl Clone for ChangeDetails
impl Clone for ChangeDetails
source§fn clone(&self) -> ChangeDetails
fn clone(&self) -> ChangeDetails
Returns a copy 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 ChangeDetails
impl Debug for ChangeDetails
source§impl Default for ChangeDetails
impl Default for ChangeDetails
source§fn default() -> ChangeDetails
fn default() -> ChangeDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChangeDetailswhere
ChangeDetails: Default,
impl<'de> Deserialize<'de> for ChangeDetailswhere ChangeDetails: Default,
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 PartialEq<ChangeDetails> for ChangeDetails
impl PartialEq<ChangeDetails> for ChangeDetails
source§fn eq(&self, other: &ChangeDetails) -> bool
fn eq(&self, other: &ChangeDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ChangeDetails
impl Serialize for ChangeDetails
impl Eq for ChangeDetails
impl StructuralEq for ChangeDetails
impl StructuralPartialEq for ChangeDetails
Auto Trait Implementations§
impl RefUnwindSafe for ChangeDetails
impl Send for ChangeDetails
impl Sync for ChangeDetails
impl Unpin for ChangeDetails
impl UnwindSafe for ChangeDetails
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