pub enum SyncIssueKind {
Unmatched,
Ambiguous,
MissingLanguage,
TypeMismatch,
}Expand description
Issue type captured during sync.
Variants§
Trait Implementations§
Source§impl Clone for SyncIssueKind
impl Clone for SyncIssueKind
Source§fn clone(&self) -> SyncIssueKind
fn clone(&self) -> SyncIssueKind
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 SyncIssueKind
impl Debug for SyncIssueKind
Source§impl<'de> Deserialize<'de> for SyncIssueKind
impl<'de> Deserialize<'de> for SyncIssueKind
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 SyncIssueKind
impl PartialEq for SyncIssueKind
Source§impl Serialize for SyncIssueKind
impl Serialize for SyncIssueKind
impl Eq for SyncIssueKind
impl StructuralPartialEq for SyncIssueKind
Auto Trait Implementations§
impl Freeze for SyncIssueKind
impl RefUnwindSafe for SyncIssueKind
impl Send for SyncIssueKind
impl Sync for SyncIssueKind
impl Unpin for SyncIssueKind
impl UnsafeUnpin for SyncIssueKind
impl UnwindSafe for SyncIssueKind
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