pub struct ChangeDetails {
pub field: Option<String>,
pub fieldtype: Option<String>,
pub field_id: Option<String>,
pub from: Option<String>,
pub from_string: Option<String>,
pub to: Option<String>,
pub to_string: Option<String>,
}
Expand description
ChangeDetails : A change item.
Fields§
§field: Option<String>
The name of the field changed.
fieldtype: Option<String>
The type of the field changed.
field_id: Option<String>
The ID of the field changed.
from: Option<String>
The details of the original value.
from_string: Option<String>
The details of the original value as a string.
to: Option<String>
The details of the new value.
to_string: Option<String>
The details of the new value as a string.
Implementations§
Source§impl ChangeDetails
impl ChangeDetails
Sourcepub fn new() -> ChangeDetails
pub fn new() -> ChangeDetails
A change item.
Trait Implementations§
Source§impl Clone for ChangeDetails
impl Clone for ChangeDetails
Source§fn clone(&self) -> ChangeDetails
fn clone(&self) -> ChangeDetails
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 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 ChangeDetails
impl<'de> Deserialize<'de> for ChangeDetails
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 for ChangeDetails
impl PartialEq for ChangeDetails
Source§impl Serialize for ChangeDetails
impl Serialize for ChangeDetails
impl StructuralPartialEq for ChangeDetails
Auto Trait Implementations§
impl Freeze for ChangeDetails
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