pub struct CertificateList(/* private fields */);
Implementations§
Source§impl CertificateList
impl CertificateList
pub fn add(&mut self, elem: &Certificate)
Trait Implementations§
Source§impl AsRef<[Certificate]> for CertificateList
impl AsRef<[Certificate]> for CertificateList
Source§fn as_ref(&self) -> &[Certificate]
fn as_ref(&self) -> &[Certificate]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<Vec<Certificate>> for CertificateList
impl AsRef<Vec<Certificate>> for CertificateList
Source§fn as_ref(&self) -> &Vec<Certificate>
fn as_ref(&self) -> &Vec<Certificate>
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for CertificateList
impl Clone for CertificateList
Source§fn clone(&self) -> CertificateList
fn clone(&self) -> CertificateList
Returns a copy 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 CertificateList
impl Debug for CertificateList
Source§impl From<CertificateList> for JsValue
impl From<CertificateList> for JsValue
Source§fn from(value: CertificateList) -> Self
fn from(value: CertificateList) -> Self
Converts to this type from the input type.
Source§impl From<NonemptySet<Certificate>> for CertificateList
impl From<NonemptySet<Certificate>> for CertificateList
Source§fn from(native: NonemptySetCertificate) -> Self
fn from(native: NonemptySetCertificate) -> Self
Converts to this type from the input type.
Source§impl From<Vec<Certificate>> for CertificateList
impl From<Vec<Certificate>> for CertificateList
Source§fn from(native: Vec<Certificate>) -> Self
fn from(native: Vec<Certificate>) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for CertificateList
impl FromWasmAbi for CertificateList
Source§impl Into<NonemptySet<Certificate>> for CertificateList
impl Into<NonemptySet<Certificate>> for CertificateList
Source§fn into(self) -> NonemptySetCertificate
fn into(self) -> NonemptySetCertificate
Converts this type into the (usually inferred) input type.
Source§impl Into<Vec<Certificate>> for CertificateList
impl Into<Vec<Certificate>> for CertificateList
Source§fn into(self) -> Vec<Certificate>
fn into(self) -> Vec<Certificate>
Converts this type into the (usually inferred) input type.
Source§impl IntoWasmAbi for CertificateList
impl IntoWasmAbi for CertificateList
Source§impl LongRefFromWasmAbi for CertificateList
impl LongRefFromWasmAbi for CertificateList
Source§impl OptionFromWasmAbi for CertificateList
impl OptionFromWasmAbi for CertificateList
Source§impl OptionIntoWasmAbi for CertificateList
impl OptionIntoWasmAbi for CertificateList
Source§impl RefFromWasmAbi for CertificateList
impl RefFromWasmAbi for CertificateList
Source§type Anchor = RcRef<CertificateList>
type Anchor = RcRef<CertificateList>
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 CertificateList
impl RefMutFromWasmAbi for CertificateList
Source§impl TryFromJsValue for CertificateList
impl TryFromJsValue for CertificateList
Source§impl VectorFromWasmAbi for CertificateList
impl VectorFromWasmAbi for CertificateList
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[CertificateList]>
Source§impl VectorIntoJsValue for CertificateList
impl VectorIntoJsValue for CertificateList
fn vector_into_jsvalue(vector: Box<[CertificateList]>) -> JsValue
Source§impl VectorIntoWasmAbi for CertificateList
impl VectorIntoWasmAbi for CertificateList
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[CertificateList]>) -> Self::Abi
Source§impl WasmDescribeVector for CertificateList
impl WasmDescribeVector for CertificateList
impl SupportsConstructor for CertificateList
impl SupportsInstanceProperty for CertificateList
impl SupportsStaticProperty for CertificateList
Auto Trait Implementations§
impl Freeze for CertificateList
impl RefUnwindSafe for CertificateList
impl Send for CertificateList
impl Sync for CertificateList
impl Unpin for CertificateList
impl UnwindSafe for CertificateList
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::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
.