pub struct SyncLogEntry {
pub id: i64,
pub link_id: String,
pub action: String,
pub status: String,
pub message: Option<String>,
pub created_at: String,
}Fields§
§id: i64§link_id: String§action: String§status: String§message: Option<String>§created_at: StringTrait Implementations§
Source§impl Clone for SyncLogEntry
impl Clone for SyncLogEntry
Source§fn clone(&self) -> SyncLogEntry
fn clone(&self) -> SyncLogEntry
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 moreAuto Trait Implementations§
impl Freeze for SyncLogEntry
impl RefUnwindSafe for SyncLogEntry
impl Send for SyncLogEntry
impl Sync for SyncLogEntry
impl Unpin for SyncLogEntry
impl UnsafeUnpin for SyncLogEntry
impl UnwindSafe for SyncLogEntry
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