pub struct UpdatedProperties {
pub id: Option<i32>,
pub last_updated: Option<OffsetDateTime>,
pub last_updated_by: Option<String>,
pub last_updated_by_name: Option<String>,
pub revision: Option<i32>,
}Fields§
§id: Option<i32>§last_updated: Option<OffsetDateTime>§last_updated_by: Option<String>§last_updated_by_name: Option<String>§revision: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for UpdatedProperties
impl Clone for UpdatedProperties
Source§fn clone(&self) -> UpdatedProperties
fn clone(&self) -> UpdatedProperties
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 UpdatedProperties
impl Debug for UpdatedProperties
Source§impl Default for UpdatedProperties
impl Default for UpdatedProperties
Source§fn default() -> UpdatedProperties
fn default() -> UpdatedProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatedProperties
impl<'de> Deserialize<'de> for UpdatedProperties
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 UpdatedProperties
impl PartialEq for UpdatedProperties
Source§impl Serialize for UpdatedProperties
impl Serialize for UpdatedProperties
impl StructuralPartialEq for UpdatedProperties
Auto Trait Implementations§
impl Freeze for UpdatedProperties
impl RefUnwindSafe for UpdatedProperties
impl Send for UpdatedProperties
impl Sync for UpdatedProperties
impl Unpin for UpdatedProperties
impl UnwindSafe for UpdatedProperties
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