pub enum GenerateStatus {
Success,
ParseFailed,
TypeIncomplete,
CallsUnavailable,
ContainsGoto,
GenericUnsupported,
Skip,
}Expand description
生成ステータス
Variants§
Success
正常生成
ParseFailed
パース失敗(S式をコメント出力)
TypeIncomplete
型推論不完全(型付S式をコメント出力)
利用不可関数を呼び出す(コメント出力)
ContainsGoto
goto を含む(生成対象から除外)
GenericUnsupported
ジェネリクス型パラメータを含む(Rust の as T キャスト不可)
Skip
スキップ(対象外)
Trait Implementations§
Source§impl Clone for GenerateStatus
impl Clone for GenerateStatus
Source§fn clone(&self) -> GenerateStatus
fn clone(&self) -> GenerateStatus
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 GenerateStatus
impl Debug for GenerateStatus
Source§impl PartialEq for GenerateStatus
impl PartialEq for GenerateStatus
Source§fn eq(&self, other: &GenerateStatus) -> bool
fn eq(&self, other: &GenerateStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GenerateStatus
impl Eq for GenerateStatus
impl StructuralPartialEq for GenerateStatus
Auto Trait Implementations§
impl Freeze for GenerateStatus
impl RefUnwindSafe for GenerateStatus
impl Send for GenerateStatus
impl Sync for GenerateStatus
impl Unpin for GenerateStatus
impl UnsafeUnpin for GenerateStatus
impl UnwindSafe for GenerateStatus
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