pub struct UploadRawData { /* private fields */ }Implementations§
Trait Implementations§
Source§impl From<UploadRawData> for JsValue
impl From<UploadRawData> for JsValue
Source§fn from(value: UploadRawData) -> Self
fn from(value: UploadRawData) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for UploadRawData
impl FromWasmAbi for UploadRawData
Source§impl IntoWasmAbi for UploadRawData
impl IntoWasmAbi for UploadRawData
Source§impl LongRefFromWasmAbi for UploadRawData
impl LongRefFromWasmAbi for UploadRawData
Source§type Abi = WasmPtr<WasmRefCell<UploadRawData>>
type Abi = WasmPtr<WasmRefCell<UploadRawData>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<UploadRawData>
type Anchor = RcRef<UploadRawData>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl OptionFromWasmAbi for UploadRawData
impl OptionFromWasmAbi for UploadRawData
Source§impl OptionIntoWasmAbi for UploadRawData
impl OptionIntoWasmAbi for UploadRawData
Source§impl RefFromWasmAbi for UploadRawData
impl RefFromWasmAbi for UploadRawData
Source§type Abi = WasmPtr<WasmRefCell<UploadRawData>>
type Abi = WasmPtr<WasmRefCell<UploadRawData>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<UploadRawData>
type Anchor = RcRef<UploadRawData>
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 RefMutFromWasmAbi for UploadRawData
impl RefMutFromWasmAbi for UploadRawData
Source§type Abi = WasmPtr<WasmRefCell<UploadRawData>>
type Abi = WasmPtr<WasmRefCell<UploadRawData>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<UploadRawData>
type Anchor = RcRefMut<UploadRawData>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiimpl SupportsConstructor for UploadRawData
impl SupportsInstanceProperty for UploadRawData
impl SupportsStaticProperty for UploadRawData
Source§impl TryFromJsValue for UploadRawData
impl TryFromJsValue for UploadRawData
Source§impl VectorFromWasmAbi for UploadRawData
impl VectorFromWasmAbi for UploadRawData
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[UploadRawData]>
Source§impl VectorIntoWasmAbi for UploadRawData
impl VectorIntoWasmAbi for UploadRawData
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[UploadRawData]>) -> Self::Abi
Source§impl WasmDescribeVector for UploadRawData
impl WasmDescribeVector for UploadRawData
Auto Trait Implementations§
impl Freeze for UploadRawData
impl RefUnwindSafe for UploadRawData
impl Send for UploadRawData
impl Sync for UploadRawData
impl Unpin for UploadRawData
impl UnsafeUnpin for UploadRawData
impl UnwindSafe for UploadRawData
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::AbiSource§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.