pub struct HashString {
    pub hash: String,
}Fields§
§hash: StringImplementations§
Trait Implementations§
Source§impl Clone for HashString
 
impl Clone for HashString
Source§fn clone(&self) -> HashString
 
fn clone(&self) -> HashString
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 HashString
 
impl Debug for HashString
Source§impl Default for HashString
 
impl Default for HashString
Source§fn default() -> HashString
 
fn default() -> HashString
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HashString
 
impl<'de> Deserialize<'de> for HashString
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 Display for HashString
 
impl Display for HashString
Source§impl From<HashString> for JsValue
 
impl From<HashString> for JsValue
Source§fn from(value: HashString) -> Self
 
fn from(value: HashString) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for HashString
 
impl FromWasmAbi for HashString
Source§impl IntoWasmAbi for HashString
 
impl IntoWasmAbi for HashString
Source§impl LongRefFromWasmAbi for HashString
 
impl LongRefFromWasmAbi for HashString
Source§impl OptionFromWasmAbi for HashString
 
impl OptionFromWasmAbi for HashString
Source§impl OptionIntoWasmAbi for HashString
 
impl OptionIntoWasmAbi for HashString
Source§impl RefFromWasmAbi for HashString
 
impl RefFromWasmAbi for HashString
Source§type Anchor = RcRef<HashString>
 
type Anchor = RcRef<HashString>
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 HashString
 
impl RefMutFromWasmAbi for HashString
Source§impl Serialize for HashString
 
impl Serialize for HashString
Source§impl TryFromJsValue for HashString
 
impl TryFromJsValue for HashString
Source§impl VectorFromWasmAbi for HashString
 
impl VectorFromWasmAbi for HashString
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[HashString]>
Source§impl VectorIntoWasmAbi for HashString
 
impl VectorIntoWasmAbi for HashString
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[HashString]>) -> Self::Abi
Source§impl WasmDescribeVector for HashString
 
impl WasmDescribeVector for HashString
impl SupportsConstructor for HashString
impl SupportsInstanceProperty for HashString
impl SupportsStaticProperty for HashString
Auto Trait Implementations§
impl Freeze for HashString
impl RefUnwindSafe for HashString
impl Send for HashString
impl Sync for HashString
impl Unpin for HashString
impl UnwindSafe for HashString
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,
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
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 more§impl<T> PolicyExt for Twhere
    T: ?Sized,
 
impl<T> PolicyExt for Twhere
    T: ?Sized,
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.§impl<T> ToStringFallible for Twhere
    T: Display,
 
impl<T> ToStringFallible for Twhere
    T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
 
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.