pub struct SyncCommit {
pub commit_seq: i64,
pub created_at: String,
pub actor_id: String,
pub changes: Vec<SyncChange>,
}Fields§
§commit_seq: i64§created_at: String§actor_id: String§changes: Vec<SyncChange>Trait Implementations§
Source§impl Clone for SyncCommit
impl Clone for SyncCommit
Source§fn clone(&self) -> SyncCommit
fn clone(&self) -> SyncCommit
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 SyncCommit
impl Debug for SyncCommit
Source§impl<'de> Deserialize<'de> for SyncCommit
impl<'de> Deserialize<'de> for SyncCommit
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 SyncCommit
impl RefUnwindSafe for SyncCommit
impl Send for SyncCommit
impl Sync for SyncCommit
impl Unpin for SyncCommit
impl UnsafeUnpin for SyncCommit
impl UnwindSafe for SyncCommit
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