pub struct EnclavesToProvisionRequest {
pub trusted_measurements: BTreeSet<Measurement>,
}Expand description
Request to query which node enclaves need provisioning, given the client’s trusted measurements.
Fields§
§trusted_measurements: BTreeSet<Measurement>The enclave measurements the client trusts. Typically the 3 latest from releases.json.
Trait Implementations§
Source§impl Clone for EnclavesToProvisionRequest
impl Clone for EnclavesToProvisionRequest
Source§fn clone(&self) -> EnclavesToProvisionRequest
fn clone(&self) -> EnclavesToProvisionRequest
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 EnclavesToProvisionRequest
impl Debug for EnclavesToProvisionRequest
Source§impl<'de> Deserialize<'de> for EnclavesToProvisionRequest
impl<'de> Deserialize<'de> for EnclavesToProvisionRequest
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
impl Eq for EnclavesToProvisionRequest
impl StructuralPartialEq for EnclavesToProvisionRequest
Auto Trait Implementations§
impl Freeze for EnclavesToProvisionRequest
impl RefUnwindSafe for EnclavesToProvisionRequest
impl Send for EnclavesToProvisionRequest
impl Sync for EnclavesToProvisionRequest
impl Unpin for EnclavesToProvisionRequest
impl UnsafeUnpin for EnclavesToProvisionRequest
impl UnwindSafe for EnclavesToProvisionRequest
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