pub struct BootstrapNonces {
pub schema_version: u32,
pub bootstrap_nonces: Vec<BootstrapNonceEntry>,
pub meta: Meta,
}Fields§
§schema_version: u32§bootstrap_nonces: Vec<BootstrapNonceEntry>Empty list is the steady state. Strict enforcement: any /v1/enroll whose nonce is not in this list is rejected with 401.
meta: MetaTrait Implementations§
Source§impl Clone for BootstrapNonces
impl Clone for BootstrapNonces
Source§fn clone(&self) -> BootstrapNonces
fn clone(&self) -> BootstrapNonces
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 BootstrapNonces
impl Debug for BootstrapNonces
Source§impl<'de> Deserialize<'de> for BootstrapNonces
impl<'de> Deserialize<'de> for BootstrapNonces
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
Source§impl PartialEq for BootstrapNonces
impl PartialEq for BootstrapNonces
Source§impl Serialize for BootstrapNonces
impl Serialize for BootstrapNonces
impl StructuralPartialEq for BootstrapNonces
Auto Trait Implementations§
impl Freeze for BootstrapNonces
impl RefUnwindSafe for BootstrapNonces
impl Send for BootstrapNonces
impl Sync for BootstrapNonces
impl Unpin for BootstrapNonces
impl UnwindSafe for BootstrapNonces
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