pub struct IdentityResolverConfig<D, H> {
pub did_resolver: D,
pub handle_resolver: H,
}Fields§
§did_resolver: D§handle_resolver: HTrait Implementations§
Source§impl<D: Clone, H: Clone> Clone for IdentityResolverConfig<D, H>
impl<D: Clone, H: Clone> Clone for IdentityResolverConfig<D, H>
Source§fn clone(&self) -> IdentityResolverConfig<D, H>
fn clone(&self) -> IdentityResolverConfig<D, H>
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 moreAuto Trait Implementations§
impl<D, H> Freeze for IdentityResolverConfig<D, H>
impl<D, H> RefUnwindSafe for IdentityResolverConfig<D, H>where
D: RefUnwindSafe,
H: RefUnwindSafe,
impl<D, H> Send for IdentityResolverConfig<D, H>
impl<D, H> Sync for IdentityResolverConfig<D, H>
impl<D, H> Unpin for IdentityResolverConfig<D, H>
impl<D, H> UnwindSafe for IdentityResolverConfig<D, H>where
D: UnwindSafe,
H: UnwindSafe,
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