pub struct NetworkEnrollmentOptions<'a> {
pub project_root: &'a Path,
pub environment: &'a str,
pub root_key: &'a Path,
pub fingerprint: &'a str,
}Expand description
NetworkEnrollmentOptions
Inputs to one explicit trust-anchor enrollment.
Fields§
§project_root: &'a Path§environment: &'a str§root_key: &'a Path§fingerprint: &'a strTrait Implementations§
Source§impl<'a> Clone for NetworkEnrollmentOptions<'a>
impl<'a> Clone for NetworkEnrollmentOptions<'a>
Source§fn clone(&self) -> NetworkEnrollmentOptions<'a>
fn clone(&self) -> NetworkEnrollmentOptions<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for NetworkEnrollmentOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for NetworkEnrollmentOptions<'a>
impl<'a> RefUnwindSafe for NetworkEnrollmentOptions<'a>
impl<'a> Send for NetworkEnrollmentOptions<'a>
impl<'a> Sync for NetworkEnrollmentOptions<'a>
impl<'a> Unpin for NetworkEnrollmentOptions<'a>
impl<'a> UnsafeUnpin for NetworkEnrollmentOptions<'a>
impl<'a> UnwindSafe for NetworkEnrollmentOptions<'a>
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