pub struct LeafNodeParameters { /* private fields */ }
Expand description
Parameters for a leaf node that can be chosen by the application.
Implementations§
Source§impl LeafNodeParameters
impl LeafNodeParameters
Sourcepub fn builder() -> LeafNodeParametersBuilder
pub fn builder() -> LeafNodeParametersBuilder
Create a new LeafNodeParametersBuilder
.
Sourcepub fn credential_with_key(&self) -> Option<&CredentialWithKey>
pub fn credential_with_key(&self) -> Option<&CredentialWithKey>
Returns the credential with key.
Sourcepub fn capabilities(&self) -> Option<&Capabilities>
pub fn capabilities(&self) -> Option<&Capabilities>
Returns the capabilities.
Sourcepub fn extensions(&self) -> Option<&Extensions>
pub fn extensions(&self) -> Option<&Extensions>
Returns the extensions.
Trait Implementations§
Source§impl Clone for LeafNodeParameters
impl Clone for LeafNodeParameters
Source§fn clone(&self) -> LeafNodeParameters
fn clone(&self) -> LeafNodeParameters
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 LeafNodeParameters
impl Debug for LeafNodeParameters
Source§impl Default for LeafNodeParameters
impl Default for LeafNodeParameters
Source§fn default() -> LeafNodeParameters
fn default() -> LeafNodeParameters
Returns the “default value” for a type. Read more
Source§impl PartialEq for LeafNodeParameters
impl PartialEq for LeafNodeParameters
impl StructuralPartialEq for LeafNodeParameters
Auto Trait Implementations§
impl Freeze for LeafNodeParameters
impl RefUnwindSafe for LeafNodeParameters
impl Send for LeafNodeParameters
impl Sync for LeafNodeParameters
impl Unpin for LeafNodeParameters
impl UnwindSafe for LeafNodeParameters
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 more