pub struct AnalysisDocumentContent {
pub name: String,
pub analysis_type: AnalysisType,
pub analysis_of: Link,
pub notebook: Notebook<Analysis>,
}
Fields§
§name: String
§analysis_type: AnalysisType
§analysis_of: Link
§notebook: Notebook<Analysis>
Trait Implementations§
Source§impl Debug for AnalysisDocumentContent
impl Debug for AnalysisDocumentContent
Source§impl<'de> Deserialize<'de> for AnalysisDocumentContent
impl<'de> Deserialize<'de> for AnalysisDocumentContent
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<AnalysisDocumentContent> for JsValuewhere
AnalysisDocumentContent: Serialize,
impl From<AnalysisDocumentContent> for JsValuewhere
AnalysisDocumentContent: Serialize,
Source§fn from(value: AnalysisDocumentContent) -> Self
fn from(value: AnalysisDocumentContent) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
impl FromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
Source§impl IntoWasmAbi for AnalysisDocumentContentwhere
AnalysisDocumentContent: Serialize,
impl IntoWasmAbi for AnalysisDocumentContentwhere
AnalysisDocumentContent: Serialize,
Source§impl OptionFromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
impl OptionFromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
Source§impl PartialEq for AnalysisDocumentContent
impl PartialEq for AnalysisDocumentContent
Source§impl RefFromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
impl RefFromWasmAbi for AnalysisDocumentContentwhere
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<AnalysisDocumentContent>
type Anchor = SelfOwner<AnalysisDocumentContent>
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 AnalysisDocumentContent
impl Serialize for AnalysisDocumentContent
Source§impl Tsify for AnalysisDocumentContent
impl Tsify for AnalysisDocumentContent
const DECL: &'static str = "export interface AnalysisDocumentContent {\n name: string;\n analysisType: AnalysisType;\n analysisOf: Link;\n notebook: Notebook<Analysis>;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Source§impl VectorFromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
impl VectorFromWasmAbi for AnalysisDocumentContentwhere
Self: DeserializeOwned,
type Abi = <JsType as VectorFromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[Self]>
Source§impl VectorIntoWasmAbi for AnalysisDocumentContentwhere
AnalysisDocumentContent: Serialize,
impl VectorIntoWasmAbi for AnalysisDocumentContentwhere
AnalysisDocumentContent: Serialize,
type Abi = <JsType as VectorIntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[Self]>) -> Self::Abi
Source§impl WasmDescribeVector for AnalysisDocumentContent
impl WasmDescribeVector for AnalysisDocumentContent
impl Eq for AnalysisDocumentContent
impl StructuralPartialEq for AnalysisDocumentContent
Auto Trait Implementations§
impl Freeze for AnalysisDocumentContent
impl RefUnwindSafe for AnalysisDocumentContent
impl Send for AnalysisDocumentContent
impl Sync for AnalysisDocumentContent
impl Unpin for AnalysisDocumentContent
impl UnwindSafe for AnalysisDocumentContent
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
.