pub struct ProposalBuilderResult(/* private fields */);Trait Implementations§
Source§impl AsRef<ProposalBuilderResult> for ProposalBuilderResult
impl AsRef<ProposalBuilderResult> for ProposalBuilderResult
Source§fn as_ref(&self) -> &ProposalBuilderResult
fn as_ref(&self) -> &ProposalBuilderResult
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for ProposalBuilderResult
impl Clone for ProposalBuilderResult
Source§fn clone(&self) -> ProposalBuilderResult
fn clone(&self) -> ProposalBuilderResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ProposalBuilderResult
impl Debug for ProposalBuilderResult
Source§impl From<ProposalBuilderResult> for JsValue
impl From<ProposalBuilderResult> for JsValue
Source§fn from(value: ProposalBuilderResult) -> Self
fn from(value: ProposalBuilderResult) -> Self
Converts to this type from the input type.
Source§impl From<ProposalBuilderResult> for ProposalBuilderResult
impl From<ProposalBuilderResult> for ProposalBuilderResult
Source§fn from(native: ProposalBuilderResult) -> Self
fn from(native: ProposalBuilderResult) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for ProposalBuilderResult
impl FromWasmAbi for ProposalBuilderResult
Source§impl Into<ProposalBuilderResult> for ProposalBuilderResult
impl Into<ProposalBuilderResult> for ProposalBuilderResult
Source§fn into(self) -> ProposalBuilderResult
fn into(self) -> ProposalBuilderResult
Converts this type into the (usually inferred) input type.
Source§impl IntoWasmAbi for ProposalBuilderResult
impl IntoWasmAbi for ProposalBuilderResult
Source§impl RefFromWasmAbi for ProposalBuilderResult
impl RefFromWasmAbi for ProposalBuilderResult
Source§type Anchor = RcRef<ProposalBuilderResult>
type Anchor = RcRef<ProposalBuilderResult>
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 VectorFromWasmAbi for ProposalBuilderResult
impl VectorFromWasmAbi for ProposalBuilderResult
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[ProposalBuilderResult]>
Source§impl VectorIntoJsValue for ProposalBuilderResult
impl VectorIntoJsValue for ProposalBuilderResult
fn vector_into_jsvalue(vector: Box<[ProposalBuilderResult]>) -> JsValue
Source§impl VectorIntoWasmAbi for ProposalBuilderResult
impl VectorIntoWasmAbi for ProposalBuilderResult
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[ProposalBuilderResult]>) -> Self::Abi
Source§impl WasmDescribeVector for ProposalBuilderResult
impl WasmDescribeVector for ProposalBuilderResult
impl SupportsConstructor for ProposalBuilderResult
impl SupportsInstanceProperty for ProposalBuilderResult
impl SupportsStaticProperty for ProposalBuilderResult
Auto Trait Implementations§
impl Freeze for ProposalBuilderResult
impl RefUnwindSafe for ProposalBuilderResult
impl Send for ProposalBuilderResult
impl Sync for ProposalBuilderResult
impl Unpin for ProposalBuilderResult
impl UnwindSafe for ProposalBuilderResult
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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.