pub struct ProfilePatchRecord {
pub patch_id: String,
pub created_at: SystemTime,
pub description: String,
pub patch: Value,
pub requires_approval: bool,
pub applied: bool,
}Fields§
§patch_id: String§created_at: SystemTime§description: String§patch: Value§requires_approval: bool§applied: boolTrait Implementations§
Source§impl Clone for ProfilePatchRecord
impl Clone for ProfilePatchRecord
Source§fn clone(&self) -> ProfilePatchRecord
fn clone(&self) -> ProfilePatchRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProfilePatchRecord
impl Debug for ProfilePatchRecord
Source§impl<'de> Deserialize<'de> for ProfilePatchRecord
impl<'de> Deserialize<'de> for ProfilePatchRecord
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 ProfilePatchRecord
impl PartialEq for ProfilePatchRecord
Source§fn eq(&self, other: &ProfilePatchRecord) -> bool
fn eq(&self, other: &ProfilePatchRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProfilePatchRecord
impl Serialize for ProfilePatchRecord
impl StructuralPartialEq for ProfilePatchRecord
Auto Trait Implementations§
impl Freeze for ProfilePatchRecord
impl RefUnwindSafe for ProfilePatchRecord
impl Send for ProfilePatchRecord
impl Sync for ProfilePatchRecord
impl Unpin for ProfilePatchRecord
impl UnsafeUnpin for ProfilePatchRecord
impl UnwindSafe for ProfilePatchRecord
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