pub struct CommentSyncState {
pub status: String,
pub sync_error: Option<String>,
pub synced_at: Option<String>,
}Fields§
§status: String§sync_error: Option<String>§synced_at: Option<String>Implementations§
Source§impl CommentSyncState
impl CommentSyncState
pub fn not_synced() -> Self
Trait Implementations§
Source§impl Clone for CommentSyncState
impl Clone for CommentSyncState
Source§fn clone(&self) -> CommentSyncState
fn clone(&self) -> CommentSyncState
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 CommentSyncState
impl Debug for CommentSyncState
Source§impl<'de> Deserialize<'de> for CommentSyncState
impl<'de> Deserialize<'de> for CommentSyncState
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 CommentSyncState
impl RefUnwindSafe for CommentSyncState
impl Send for CommentSyncState
impl Sync for CommentSyncState
impl Unpin for CommentSyncState
impl UnsafeUnpin for CommentSyncState
impl UnwindSafe for CommentSyncState
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