pub enum AnalysisType {
Model,
Diagram,
}
Variants§
Trait Implementations§
Source§impl Debug for AnalysisType
impl Debug for AnalysisType
Source§impl<'de> Deserialize<'de> for AnalysisType
impl<'de> Deserialize<'de> for AnalysisType
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 From<AnalysisType> for JsValuewhere
AnalysisType: Serialize,
impl From<AnalysisType> for JsValuewhere
AnalysisType: Serialize,
Source§fn from(value: AnalysisType) -> Self
fn from(value: AnalysisType) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
impl FromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
impl IntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
Source§impl OptionFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
Source§impl OptionIntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
impl OptionIntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
Source§impl PartialEq for AnalysisType
impl PartialEq for AnalysisType
Source§impl RefFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
impl RefFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
Source§type Abi = <JsType as RefFromWasmAbi>::Abi
type Abi = <JsType as RefFromWasmAbi>::Abi
The Wasm ABI type references to
Self
are recovered from.Source§type Anchor = SelfOwner<AnalysisType>
type Anchor = SelfOwner<AnalysisType>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl Serialize for AnalysisType
impl Serialize for AnalysisType
Source§impl Tsify for AnalysisType
impl Tsify for AnalysisType
Source§impl VectorFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for AnalysisTypewhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
impl VectorIntoWasmAbi for AnalysisTypewhere
AnalysisType: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribeVector for AnalysisType
impl WasmDescribeVector for AnalysisType
impl Eq for AnalysisType
impl StructuralPartialEq for AnalysisType
Auto Trait Implementations§
impl Freeze for AnalysisType
impl RefUnwindSafe for AnalysisType
impl Send for AnalysisType
impl Sync for AnalysisType
impl Unpin for AnalysisType
impl UnwindSafe for AnalysisType
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> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.