#[repr(i32)]pub enum AnalysisStatus {
Ok = 0,
InvalidArgument = 1,
Utf8Error = 2,
OptionsJsonError = 3,
NoDiagram = 4,
ParseError = 5,
RenderError = 6,
UnsupportedFormat = 7,
Panic = 8,
InternalError = 9,
ResourceLimitExceeded = 10,
}Variants§
Ok = 0
InvalidArgument = 1
Utf8Error = 2
OptionsJsonError = 3
NoDiagram = 4
ParseError = 5
RenderError = 6
UnsupportedFormat = 7
Panic = 8
InternalError = 9
ResourceLimitExceeded = 10
Implementations§
Trait Implementations§
Source§impl Clone for AnalysisStatus
impl Clone for AnalysisStatus
Source§fn clone(&self) -> AnalysisStatus
fn clone(&self) -> AnalysisStatus
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 moreimpl Copy for AnalysisStatus
Source§impl Debug for AnalysisStatus
impl Debug for AnalysisStatus
impl Eq for AnalysisStatus
Source§impl PartialEq for AnalysisStatus
impl PartialEq for AnalysisStatus
Source§fn eq(&self, other: &AnalysisStatus) -> bool
fn eq(&self, other: &AnalysisStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnalysisStatus
Auto Trait Implementations§
impl Freeze for AnalysisStatus
impl RefUnwindSafe for AnalysisStatus
impl Send for AnalysisStatus
impl Sync for AnalysisStatus
impl Unpin for AnalysisStatus
impl UnsafeUnpin for AnalysisStatus
impl UnwindSafe for AnalysisStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.