pub struct InsertBuilder { /* private fields */ }Expand description
INSERT query builder.
Implementations§
Trait Implementations§
Source§impl From<InsertBuilder> for JsValue
impl From<InsertBuilder> for JsValue
Source§fn from(value: InsertBuilder) -> Self
fn from(value: InsertBuilder) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for InsertBuilder
impl FromWasmAbi for InsertBuilder
Source§impl IntoWasmAbi for InsertBuilder
impl IntoWasmAbi for InsertBuilder
Source§impl LongRefFromWasmAbi for InsertBuilder
impl LongRefFromWasmAbi for InsertBuilder
Source§impl OptionFromWasmAbi for InsertBuilder
impl OptionFromWasmAbi for InsertBuilder
Source§impl OptionIntoWasmAbi for InsertBuilder
impl OptionIntoWasmAbi for InsertBuilder
Source§impl RefFromWasmAbi for InsertBuilder
impl RefFromWasmAbi for InsertBuilder
Source§type Anchor = RcRef<InsertBuilder>
type Anchor = RcRef<InsertBuilder>
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 InsertBuilder
impl RefMutFromWasmAbi for InsertBuilder
Source§impl TryFromJsValue for InsertBuilder
impl TryFromJsValue for InsertBuilder
Source§impl VectorFromWasmAbi for InsertBuilder
impl VectorFromWasmAbi for InsertBuilder
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[InsertBuilder]>
Source§impl VectorIntoWasmAbi for InsertBuilder
impl VectorIntoWasmAbi for InsertBuilder
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[InsertBuilder]>) -> Self::Abi
Source§impl WasmDescribeVector for InsertBuilder
impl WasmDescribeVector for InsertBuilder
impl SupportsConstructor for InsertBuilder
impl SupportsInstanceProperty for InsertBuilder
impl SupportsStaticProperty for InsertBuilder
Auto Trait Implementations§
impl Freeze for InsertBuilder
impl !RefUnwindSafe for InsertBuilder
impl !Send for InsertBuilder
impl !Sync for InsertBuilder
impl Unpin for InsertBuilder
impl !UnwindSafe for InsertBuilder
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.